Live data from Hacker News

TurboKV: Insanely fast Rust key-value store

github.com

91–93 of 93 posts

Re: TurboKV: Insanely fast Rust key-value store

#91
post #82
post #76

Earlier quoted context omitted.

Yep. I made a simple one in Bash even! (Do not recommend.)

You should've used recutils probably :) https://labs.tomasino.org/gnu-recutils/

TIL!

Sharding would be so easy! Just run "split" and spread the chunks over a bunch of servers, then run "recutils" with "parallel" to retrieve!

Truly webscale.

Re: TurboKV: Insanely fast Rust key-value store

#92

Earlier quoted context omitted.

Well, dbm (database manager) is basically that and has been called that for almost 50 years

dbm isn't a database either, and people who call it that are simply wrong.

So... Databases weren't invented, until after the name was in common use?

Re: TurboKV: Insanely fast Rust key-value store

#93

Earlier quoted context omitted.

paranoid() does survive power loss.

And has performance I believe worse than rocksdb

RocksDB’s default is WriteOptions.sync = false. It can lose recent acknowledged writes after power loss, much like TurboKV Durable. Most folks use that unknowingly.
Post reply on HN