2026-04-11 11:20:25 +02:00
2026-04-11 11:20:25 +02:00
2026-04-03 10:57:06 +02:00
2026-04-11 11:20:25 +02:00
2026-04-11 11:20:25 +02:00
2026-04-11 11:20:25 +02:00

redis

A Redis client library for Carp, supporting Redis 7.x.

Installation

(load "https://git.veitheller.de/carpentry/redis.git@0.2.0")

Usage

(load "redis.carp")

(defn main []
  (match (Redis.open "127.0.0.1")
    (Result.Success r)
      (do
        (println* &(Redis.ping &r))
        (println* &(Redis.set &r @"key" @"value"))
        (println* &(Redis.get &r @"key"))

        ; list operations return nested RESP arrays
        (println* &(Redis.rpush &r @"mylist" @"a"))
        (println* &(Redis.rpush &r @"mylist" @"b"))
        (println* &(Redis.lrange &r @"mylist" @"0" @"-1"))

        ; pattern match on responses
        (match (Redis.get &r @"key")
          (Result.Success resp)
            (match resp
              (RESP.Str s) (println* "got: " &s)
              (RESP.Null) (println* "key not found")
              _ (println* "unexpected type"))
          (Result.Error e) (println* "error: " &e))

        (Redis.close r))
    (Result.Error err) (IO.errorln &err)))

The library provides thin wrappers around all standard Redis commands through 7.2, so you can call them directly (e.g. Redis.get, Redis.hset, Redis.lrange). For commands with complex or variadic arguments, use Redis.send directly:

(Redis.send &r @"SET" &[(to-redis @"key") (to-redis @"value")])
(Redis.read &r)

The RESP type supports recursive arrays via Box, so nested structures (e.g. from XRANGE or COMMAND) are decoded faithfully.

Full API documentation lives here.

More examples are in the examples directory.


Have fun!

S
Description
A Redis client library for Carp
https://veitheller.de/redis
Readme 191 KiB