Hi,
I have a RESTFul webservice that goes to the database to fetch some data, The data is very static in nature and changes like once a month or so.
Still to fetch the data from DB it takes the service about 300ms, I was wondering is thare any way in which I can cache the data on server and make the service fetch it from there so that the time spent blocking on DB and IO is reduced.
And also is there any way in which the chache can be refreshed when new data is added ?
Thanks,
Vivek