Kagni is a Redis-like data store.
Kagni - Kağnı in Turkish is a form of tumbrel, pulled by bullocks used for carrying stuff in rural areas. It is slow as hell, but gets things done. Naming is due to its ability to store and load on / off stuff and also its sturdiness.
Performance will get better hopefully :)
Kagni has two async implementations for now, based on Asyncio + Uvloop and Trio. For now Asyncio + Uvloop implementation gives the best performance, but personally I like the Trio implementation better, for not getting in the way much.
All data lives in memory and an internal async job will be periodically dumping the memory into SQLite database. Already a battle tested and proven data storage technology, SQLite will be more than enough to handle the storage easing the backup process as well.
Bitmaps in Redis start to hog memory in time as the data grows. Roaring Bitmaps is a better solution for the same requirements. The implementation is compatible with utilities / libraries such as Bitmapist
Kagni speaks RESP(REdis Serialization Protocol) fluently. I've implemented the following commands up to now:
- Ping
- Command
- Get
- Set
- Getset
- Mget
- Mset
- Del
- Expire
- Ttl
- Keys
- Incr
- Incrby
- Decr
- Decrby
- Getrange
- Setrange
- Strlen
- Append
- Setbit
- Getbit
- Bitop
- Bitcount
- Bitpos
- Flushdb
- Flushall
- Hget
- Hset
- Hexists
- Hdel
- Hgetall
- Sadd
- Scard
- Sdiff
- Sdiffstore
- Sinter
- Sinterstore
- Sismember
- Smembers
- Smove
- Spop
- Srandmember
- Srem