|
|
|
|
|
by nottorp
415 days ago
|
|
Are they comparing a nosql database with no search/filtering with a sql database that has those operations by any chance? And the 279x number is for parallel deletes? If you have to do that many parallel deletes it's probably a maintenance operation and you might as well copy the remaining data out, drop the db and recreate it... There goes any credibility. |
|
SQLite (even in WAL mode) hits write lock contention under concurrency, while AnuDB (using RocksDB) handles concurrent writes better due to its design.
Also, AnuDB supports indexing via an API using RocksDB's prefix extractor, so it’s not just a key-value store — basic filtering is supported.
Appreciate the feedback — will revise the post to make this clearer!