You can search for identifiers within the package.
in-package search v0.2.0
hiredis
Hiredis
Hiredis is an OCaml wrapper around the hiredis C library
module Value = Hiredis_value
The Value.t type is used to encode Value.ts to communicate with Redis
Value.t
type status =
| OK
| ERR of string option
val command : string array -> string option
Create a command from an array of strings
val command_v : Value.t array -> string option
Create a command from an array of Value.ts
val encode_string : Value.t -> string
Encode Value.t to string
val decode_string : string -> Value.t option
Decode Value.t from string
module Reader : sig ... end
Readers are used to decode Redis Value.ts from buffered input
module Client : sig ... end
module Pool : sig ... end
A pool is used to access one server using many clients
module Shell : sig ... end