Cache for large read only database recommendation
- by paddydub
I am building site on with Spring, Hibernate and Mysql.
The mysql database contains information on coordinates and locations etc, it is never updated only queried. The database contains 15000 rows of coordinates and 48000 rows of coordinate connections.
Every time a request is processed, the application needs to read all these coordinates which is taking approx 3-4 seconds.
I would like to set up a cache, to allow quick access to the data.
I'm researching memcached at the moment, can you please advise if this would be my best option?