package redis-async

  1. Overview
  2. Docs
module Bulk_io : sig ... end
module Resp3 : sig ... end

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

module type S_generic = sig ... end
module type S = sig ... end
module type S_hash = sig ... end
module Make (Key : Bulk_io.S) (Value : Bulk_io.S) : S with module Key = Key and module Value = Value
module Make_hash (Key : Bulk_io.S) (Field : Bulk_io.S) (Value : Bulk_io.S) : S_hash with module Key = Key and module Field = Field and module Value = Value