MongoDB vs. Redis vs. Cassandra for a fast-write, temporary row storage solution

后端 未结 9 727
无人共我
无人共我 2021-01-29 20:38

I\'m building a system that tracks and verifies ad impressions and clicks. This means that there are a lot of insert commands (about 90/second average, peaking at 250) and some

9条回答
  •  借酒劲吻你
    2021-01-29 21:12

    I have hand-on experience with mongodb, couchdb and cassandra. I converted a lot of files to base64 string and insert these string into nosql.
    mongodb is the fastest. cassandra is slowest. couchdb is slow too.

    I think mysql would be much faster than all of them, but I didn't try mysql for my test case yet.

提交回复
热议问题