Get the latest tech news
Redis re-implemented with SQLite
Redis re-implemented with SQLite. Contribute to nalgeon/redka development by creating an account on GitHub.
MULTIDB.View/ DB.Update Starts a transaction.Unlike Redis, Redka's transactions are fully ACID, providing automatic rollback in case of failure. Once the server is running, connect to it using redis-cli or an API client like redis-py or go-redis — just as you would with Redis. So while Redka is 2-6 times slower than Redis (not surprising, since we are comparing a relational database to a key-value data store), it can still do 23K writes/sec and 57K reads/sec, which is pretty good if you ask me.
Or read this on Hacker News