I have a PHP project written in Symfony that is using connection on different databases. An example is a users table on one DB and another related table on another DB.
This works well except that I am planning to move one of the two MySQL DBs to another physical MySQL server which means that the two DBs will not be on the same server any longer.
Is there a mechanism on Symfony to support this kind of setup using Doctrine and Entity Manager?
I was exploring the FEDERATED Engine on MySQL but this will work for ready only, what about the writes?
I have an example where within a form that a user can submit, there are fields from one and the other tables, hosted now on two different servers.