My company has been setting up a different server for read and write access of mysql DB. Previously, we use custom php script. However, I was recently given task to create tools by leveraging CI. I've done it on test server. Now, I'm confused, how to implement it on live server.
|
feedback
|
|
Setup multiple 'connection groups' for each server in your database.php config file, then in the Model:
See examples in: Connecting to Multiple Databases | |||
|
feedback
|
|
Might it be easier, rather than doing this by IP, do it using MySQL users. You could have two different users, one with all the write privileges like Then what ever code is running on your write web server uses the write user and vice-a-versa? | |||||
feedback
|