Liking cljdoc? Tell your friends :D

rt.redis.eval-basic


*runtime-opts*clj


redis-body-transformclj

(redis-body-transform input mopts)

transform body into output form

(redis-body-transform '(+ 1 2 3) {}) => '(return (return-wrap (fn [] (return (+ 1 2 3)))))

transform body into output form

(redis-body-transform '(+ 1 2 3)
                      {})
=> '(return (return-wrap (fn [] (return (+ 1 2 3)))))
raw docstring

redis-invoke-ptr-basicclj

(redis-invoke-ptr-basic {:keys [layout] :as redis :or {layout :flat}} ptr args)

invokes pointer for redis eval

(redis-invoke-ptr-basic (l/rt :lua) k/arr-map [[1 2 3 4 5] k/inc]) => [2 3 4 5 6]

invokes pointer for redis eval

(redis-invoke-ptr-basic
 (l/rt :lua)
 k/arr-map [[1 2 3 4 5] k/inc])
=> [2 3 4 5 6]
raw docstring

redis-main-wrapclj

(redis-main-wrap body)

redis-raw-evalclj

(redis-raw-eval redis body)

conducts a raw ewal

(redis-raw-eval (l/rt :lua) "return 1 + 2") => 3

conducts a raw ewal

(redis-raw-eval (l/rt :lua)
                "return 1 + 2")
=> 3
raw docstring

rt-exceptionclj

(rt-exception e rt body)

processes an exception

processes an exception
raw docstring

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

× close