Reputation: 503
Does it makes any different if I was using mysql db and now I want to use Mysql cluster on my server. How will this affect my yii2 application ?? do I have to make any changes to db connection or just connect to any node ? does this affect Active Queries ?? Does it affect the active model relations ??
Thanks in advance.
Upvotes: 0
Views: 196
Reputation: 18021
You need to carefully read Known Limitations of NDB Cluster section in the MySQL docs.
Most important parts are:
AR implementation in Yii 2 should be basically fine. You connect in the same way as usual.
Upvotes: 1