Reputation: 3894
I have an application server which writes frequently to a database and reads it in the near future, but then very rarely that data entry is read.
What is some good databases optimised for this kind of access? I am currently using MongoDB but I think that probably isnt the best choice in this case.
I am open to relational DBs (i.e. MySQL), MongoDB, Redis, etc.
P.S. Seems it's easy to answer this question for read frequently DB access, but hard to find information on this specific case.
Upvotes: 2
Views: 1230
Reputation: 2811
This is very generic question, We need to know more details
Apart from it, Since you have mentioned data is rarely read beyond a certain point
Again the option for going for SQL or NOSQL is based on
You need to provide more details on your database need in terms of functionality, data volumes, data usage and growth aspects
Hope it helps...
Upvotes: 1
Reputation: 50328
Since you mention MySQL, you might want to look at the ARCHIVE storage engine.
Upvotes: 0