建议频繁写入、很少读取的数据库
我有一个应用程序服务器,它经常写入数据库并在不久的将来读取它,但很少读取数据条目。
有哪些针对这种访问进行优化的好的数据库?我目前正在使用 MongoDB,但我认为在这种情况下这可能不是最好的选择。
我对关系数据库(即 MySQL)、MongoDB、Redis 等持开放态度。
PS 对于经常读取的数据库访问来说,似乎很容易回答这个问题,但很难找到有关此特定案例的信息。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个非常普遍的问题,我们需要了解更多详细信息
除此之外,由于您提到数据很少被读取超过某个点,因此
再次选择选择 SQL 或 NOSQL 是基于
您需要在功能、数据量、数据使用和增长方面提供有关数据库需求的更多详细信息
希望它有所帮助。 。
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...
既然您提到了 MySQL,您可能需要查看 ARCHIVE存储引擎。
Since you mention MySQL, you might want to look at the ARCHIVE storage engine.