HiredisHiredis is an OCaml wrapper around the hiredis C library
type value = | Nil| Error of string| Integer of int64| String of string| Array of value array| Status of stringThe value type is used to encode values to communicate with Redis
module Value : sig ... endval command_v : value array -> string optionCreate a command from an array of values
val encode_string : value -> stringEncode value to string
val decode_string : string -> value optionDecode value from string
module Reader : sig ... endReaders are used to decode Redis values from buffered input
module Client : sig ... endmodule Pool : sig ... endA pool is used to access one server using many clients
module Shell : sig ... end