Oddbean new post about | logout
 I wrote a key/value store in PHP using SQLite. It's becoming the workhorse of my build process.

https://github.com/grumpygamer/kvstore 
 @de22920b it sounds like a subset of Redis. is the key feature that the state goes into a single sqlite db file? I see the attraction there for a desktop/mobile game 
 @de22920b Cute!

Looks like your addValue is non-atomic, selecting a value and then inserting(?) a new one based on it - it'll race with other calls.