Skip to content

0.0.8

Choose a tag to compare

@github-actions github-actions released this 28 Jan 03:30
· 33 commits to main since this release
Immutable release. Only release title and notes can be modified.

Added

  • Bloom filter data structure

Changed

  • Use newer Zig master version

Installation

Download Binaries

Pre-built binaries are available for Linux, macOS, and Windows.

  1. Download the appropriate binary for your platform
  2. Verify the checksum against SHA256SUMS
  3. Make the binary executable (Linux/macOS): chmod +x zedis-*
  4. 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