Liking cljdoc? Tell your friends :D

omega-red.redis.protocol

Deals with Jedis/Redis internal protocol not Clojure protocol

Deals with Jedis/Redis internal protocol not Clojure protocol
raw docstring

cmd+args->command-with-argsclj

(cmd+args->command-with-args [cmd & args])
source

execute*clj

(execute* client cmd+args)

Executes a single Redis command as vector of command and arguments.: (execute-raw! conn [:ping]) (execute-raw conn [:set "foo" "bar"])

Executes a single Redis command as vector of command and arguments.:
(execute-raw! conn [:ping])
(execute-raw conn [:set "foo" "bar"])
sourceraw docstring

execute-pipeline*clj

(execute-pipeline* client cmds+args)

Executes a pipeline of Redis commands as a sequence of vectors of commands and arguments:

(execute-pipeline* conn [[:ping] [:set "foo" "bar"] [:get "foo"] [:del "foo"]])

Executes a pipeline of Redis commands as a sequence of vectors of commands and arguments:

(execute-pipeline* conn [[:ping]
                         [:set "foo" "bar"]
                         [:get "foo"]
                         [:del "foo"]])
sourceraw docstring

transact*clj

(transact* client cmds+args)

Executes a transaction of Redis commands as a sequence of vectors of commands and arguments:

(transact* conn [[:ping] [:set "foo" "bar"] [:get "foo"] [:del "foo"]])

Executes a transaction of Redis commands as a sequence of vectors of commands and arguments:

(transact* conn [[:ping]
                 [:set "foo" "bar"]
                 [:get "foo"]
                 [:del "foo"]])
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close