The set of commands Redis provides can be foundhere. Running The repository provides a server, client library, and some client executables for interacting with the server. Start the server: RUST_LOG=debug cargo run --bin mini-redis-server ...
The Simple Redis server/client is implemented using Netty, and a version based on JDK NIO(使用Netty实现Simple Redis服务器客户端,以及一个基于JDK NIO的版本) - Stool233/mini-redis
Minisentinel Pure Go Redis Sentinel server Sometimes you want to test code which uses Redis with Sentinel, without making it a full-blown integration test. Minisentinel implements (parts of) the Sentinel protocol to be used in unittests. Used together with Miniredis, they enable a simple, chea...
Miniredis Pure Go Redis test server, used in Go unittests.Sometimes you want to test code which uses Redis, without making it a full-blown integration test. Miniredis implements (parts of) the Redis server, to be used in unittests. It enables a simple, cheap, in-memory, Redis ...
Miniredis Pure Go Redis test server, used in Go unittests. Sometimes you want to test code which uses Redis, without making it a full-blown integration test. Miniredis implements (parts of) the Redis server, to be used in unittests. It enables a simple, cheap, in-memory, Redis replacem...
Miniredis Pure Go Redis test server, used in Go unittests. Sometimes you want to test code which uses Redis, without making it a full-blown integration test. Miniredis implements (parts of) the Redis server, to be used in unittests. It enables a simple, cheap, in-memory, Redis replacem...
Miniredis implements (parts of) the Redis server, to be used in unittests. It enables a simple, cheap, in-memory, Redis replacement, with a real TCP interface. Think of it as the Redis version of net/http/httptest. It saves you from using mock code, and since the redis server lives...
Pure Go Redis Sentinel server Sometimes you want to test code which uses Redis with Sentinel, without making it a full-blown integration test. Minisentinel implements (parts of) the Sentinel protocol to be used in unittests. Used together withMiniredis, they enable a simple, cheap, in-memory...