New
0.0.5
Changed
- Update README to reflect release workflow changes
- Test the release badge in the README
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.5-<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