-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.lisp
45 lines (34 loc) · 1016 Bytes
/
package.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
;;; CL-REDIS package definition
;;; (c) Vsevolod Dyomkin, see LICENSE file for permissions
(in-package :cl-user)
(defpackage #:redis
(:use #:common-lisp #:rutil)
(:shadow #:quit #:sort #:set #:get #:substr #:eval #:type #:append
#:watch #:unwatch #:shutdown #:time #:keys)
(:export #:redis-connection
#:connect
#:disconnect
#:reconnect
#:*connection*
#:open-connection
#:close-connection
#:connected-p
#:with-connection
#:with-recursive-connection
#:with-persistent-connection
#:*echo-p*
#:*echo-stream*
#:*cmd-prefix*
#:def-cmd
#:def-expect-method
#:expect
#:tell
#:redis-error
#:redis-error-message
#:redis-bad-reply
#:redis-error-reply
#:redis-connection-error
#:with-pipelining))
(defpackage #:red
(:use #| nothing |# ))
;;; end