• This repository has been archived on 28/Jul/2023
  • Stars
    star
    15
  • Rank 1,328,355 (Top 27 %)
  • Language
    Racket
  • License
    MIT License
  • Created over 8 years ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Redis bindings for Racket

rackdis

Build Status

Redis client for Racket. The documentation still needs to be written, but for now see the tests.rkt file to see example usage. Currently the entire set of Redis v1 commands is implemented, along with most of v2 and some of v3.

The api is 1-1 with Redis, except in one way: the Redis append command has been renamed to concat.

Example Usage

Create a redis object: (define redis (new redis%))

Initialize it: (send redis init)

Send a command: (send redis set "a-number" "1")

Installation

Execute raco pkg install git://github.com/eu90h/rackdis or use DrRacket.

To uninstall, run raco pkg remove rackdis