top | item 45659831

(no title)

i_k_k | 4 months ago

I always wanted to ship a write-only database. Lightning fast.

discuss

order

elygre|4 months ago

Back in the 80s a professor at our college got a presentation on the concept of «write-only memory» accepted for some symposium.

Good times.

pcdevils|4 months ago

Pretty much how eventstoredb works. Deleting data fully only happens at scavenge which rewrites the data files.

hxtk|4 months ago

I think it was a joke. It sounds like you read it as append-only, like most LSM tree databases (not rewriting files in the course of write operations), but I think GP meant it as write-only to the exclusion of reads, roughly equivalent to `echo $data > /dev/null`

archerx|4 months ago

That would be useful for logging.

warkdarrior|4 months ago

If it's write-only, and no reads ever happen, one can write to /dev/null without loss of utility.

Etheryte|4 months ago

Also useful for backups, so long as you don't need to restore.