I'm rewriting a legacy web application. At some point in time, I want old and new app, to work in parallel, on databases with different structure (both mysql). The troublesome part is that the databases needs to be synchronized, preferably in real time. So, if a new user is created in old app, I want him also in new one.
Have anyone struggled with similar issue? I'm thinking about some sort of middleware in between those two databases, that would 'translate' inserts and updates between schemas but maybe there is something else?
Cheers and thank you :)