I have a web application which has a fair amount of user base. The application currently uses MySQL for storing all the data, be it static or user data. The problem is that I have recognized some data which is never going to change frequently in the database but there is a probability that it might!
I am using REST calls for fetching the data from the database which is in the form of a JSON, the questions in my mind are:
- Should we store the not changing data as static JSON files? I know it will kill the relationship that I could have established with that data.
- Another point is Embedded Databases or in-memory database, are they a good alternative to store not so reverently changing data?