You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
489 B
21 lines
489 B
;; [[file:redis.org::*API][API:1]] |
|
(define-library (redis) |
|
(import (chicken base)) |
|
(export redis-connect |
|
redis-disconnect |
|
redis-run |
|
redis-run-proc |
|
|
|
make-redis-connection |
|
redis-connection? |
|
redis-connection-input |
|
redis-connection-output |
|
|
|
&redis-error |
|
redis-error? |
|
redis-error-message |
|
|
|
redis-set-comparator) |
|
(begin |
|
(include-relative "redis-impl.scm"))) |
|
;; API:1 ends here
|
|
|