Liking cljdoc? Tell your friends :D

omega-red.client

Represents a redis connection spec, so we can use it when using Carmine, unlike the regular wcar* macro, recommended in Carmine docs.

Represents a redis connection spec,
so we can use it when using Carmine, unlike the
regular `wcar*` macro, recommended in Carmine docs.
raw docstring

createclj

(create {:keys [host port]})
source

execute*clj

(execute* conn cmd+args)

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

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

execute-pipeline*clj

(execute-pipeline* conn 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

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

× close