What are good NoSQL and non-relational database solutions for audit/logging database

后端 未结 3 1599
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-31 11:16

What would be suitable database for following? I am especially interested about your experiences with non-relational NoSQL systems. Are they any good for this kind of usage, wh

3条回答
  •  灰色年华
    2021-01-31 12:05

    should I go with normal relational database (DB2)?

    Yes, you should! If you just want to store stuff and scan it, you might as well write to a file. Very fast, no overhead! But the minute you want to summarize data over time (last 24h, or between time t and t+1), the more you care about the data as something other than lines of text, no question a proper RDBMS is your friend.

提交回复
热议问题