New
0.0.8
Added
- Bloom filter data structure
Changed
- Use newer Zig master version
Installation
Download Binaries
Pre-built binaries are available for Linux, macOS, and Windows.
- Download the appropriate binary for your platform
- Verify the checksum against SHA256SUMS
- Make the binary executable (Linux/macOS):
chmod +x zedis-* - Run the server:
./zedis-0.0.8-<platform>
Verify Checksums
sha256sum -c SHA256SUMS
Quick Start
# Start the server (default: 127.0.0.1:6379)
./zedis-<platform>
# Connect using redis-cli
redis-cli -h 127.0.0.1 -p 6379
# Try some commands
SET mykey "Hello, Zedis!"
GET mykey