GitHub user mapleFU added a comment to the discussion: Order of Complexity - Redis versus kvrocks
Redis holds everything in memory, so, though sometime it would has high "cpu cache miss", it can well estimated the complexity by the algorithm. kvrocks depends on RocksDB and Block Cache in RocksDB. So, it might introduce disk io, which might be spike or sometime bottleneck of the command. And compaction can optimize this. Besides, I think we could provide some complexity like alibaba tair ( https://help.aliyun.com/zh/tair/developer-reference/doc?spm=a2c4g.11186623.0.0.3d696dc9kUxjBS ) GitHub link: https://github.com/apache/kvrocks/discussions/1686#discussioncomment-6777791 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
