Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
哪个数据库(SQL/NoSQL)最适合统计网站?每1秒会写大约100-200行,只有数字,比如可以是金融股。{对不起,如果这对该网站来说是个坏问题}
MySQL 将使它坚如磐石,因为您不会丢失任何行。此外,使用 MySQL 编写查询以对这些列执行数学运算非常容易。
假设这些行将永远插入并且永远使集合变得非常大,那么像 MongoDB 这样的 NoSQL 解决方案将能够更好地扩展。MySQL 会占用更多的磁盘空间。
如果您需要原子操作,例如,您不能丢失任何行,那么 MySQL 是您的最佳选择。