This plugin compiles Redis from source, so you need:
- C compiler (gcc or clang)
- make
xcode-select --installsudo apt-get install build-essentialsudo dnf groupinstall "Development Tools"mise use -g redis@latestOr add to your mise.toml:
[tools]
redis = "latest"After installation, the following Redis binaries are available:
redis-server- The Redis serverredis-cli- The Redis command line interfaceredis-benchmark- Redis benchmarking utilityredis-check-aof- AOF file checkerredis-check-rdb- RDB file checker
Start a Redis server:
redis-serverConnect with the CLI:
redis-cliMIT