Tagged Questions

5
votes
3answers
1k views

Master / Slave switch in the Zend Framework application layer

I am writing an application which requires the Master/Slave switch to happen inside the application layer. As it is right now, I instantiate a Zend_Db_Table object on creation of the mapper, and then ...
4
votes
1answer
88 views

How should I refactor my code (PHP & MySQL) to work more efficiently with a Master / slave database configuration?

I have developed a web application using PHP and MySQL which has all been running from a single server. When I come to scale up and need a separate database server and then ultimately need a master / ...
1
vote
2answers
424 views

CodeIgniter configure different IP for READ and WRITE MySQL data

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 ...
0
votes
2answers
349 views

What's the best way to create a master-slave configuration for a web app?

I'm creating a server management interface for a few of my servers (which host virtual servers) and I wanted to know the best way to implement a master-slave configuration for said interface. The ...