package redis-async

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Redis.Resp3Source

The RESP3 protocol as specified here: https://github.com/antirez/RESP3/blob/master/spec.md

Sourceexception Protocol_error of string
Sourcetype t =
  1. | String of string
  2. | Error of string
  3. | Int of int
  4. | Null
  5. | Double of float
  6. | Boolean of bool
  7. | Bignum of Bignum.t
  8. | Array of t array
  9. | Map of (t * t) array
  10. | Set of t array
include Ppx_compare_lib.Comparable.S with type t := t
Sourceval compare : t -> t -> int
include Ppx_compare_lib.Equal.S with type t := t
Sourceval equal : t -> t -> bool
Sourceval sexp_of_t : t -> Sexplib0.Sexp.t
Sourceval simple_string : ([> Core.read ], Iobuf.seek) Iobuf.t -> string
Sourceval blob_string : ([> Core.read ], Iobuf.seek) Iobuf.t -> string
Sourceval extract_error : ([> Core.read ], Iobuf.seek) Iobuf.t -> Core.Error.t
Sourceval parse_exn : ([> Core.read ], Iobuf.seek) Iobuf.t -> t
Sourceval expect_crlf : ([> Core.read ], Iobuf.seek) Iobuf.t -> unit
Sourceval expect_char : ([> Core.read ], Iobuf.seek) Iobuf.t -> char -> unit
Sourceval consume_char : ([> Core.read ], Iobuf.seek) Iobuf.t -> char
Sourceval peek_char : ([> Core.read ], Iobuf.seek) Iobuf.t -> char
Sourceval ends_in_crlf : ([> Core.read ], Iobuf.seek) Iobuf.t -> bool
Sourceval number : ([> Core.read ], Iobuf.seek) Iobuf.t -> int
OCaml

Innovation. Community. Security.