My application is getting a lot of database calls hence I need to start using a distributed master/slave mysql database but I'm having problems configuring play framework!
so my first question is that if it is actually possible to configure hibernate and jpa with play framework to take advantage of replication driver
if, it is not possible, is there any other technique to use a distributed mysql schema with play
this is my configuration:
db.url=jdbc:mysql:replication://[master ip]:3306,[slave ip]:3306/<dbname>autoReconnectForPools=true&roundRobinLoadBalance=true&loadBalanceBlacklistTimeout=5000&loadBalanceStrategy=random
db.driver=com.mysql.jdbc.ReplicationDriver
db.user=<dbusername>
db.pass=<dbpassword>