Re: [go-nuts] [ANN] Slowpoke (database engine)

2018-04-18 Thread recoilme
Keys storage not grow, they are overriding on an update, values override too if size of old value is sufficient If no - it will grow. I have plans to add compaction on backup in future. Right now backup may be implemented in three command (sets(gets(keys( > On 18 Apr 2018, at 11:31, Sokolov

[go-nuts] [ANN] Slowpoke (database engine)

2018-04-17 Thread vadim kulibaba
Hi Everyone, I finished simple and effective key/value store with nice api: https://github.com/recoilme/slowpoke The performance was not a target of this database but it performs well and not so slow as i expected. It just stores values in files and keys with value addresses in memory, with per