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 Key_event : sig ... end

Key events that you may ask Redis to inform you of https://redis.io/docs/manual/keyspace-notifications/

module Cursor : sig ... end

A cursor type for use with commands such as SCAN

module Role : sig ... end

The role of a Redis node as described by https://redis.io/commands/role/

module Auth : sig ... end
module type S = sig ... end
module Make (Key : Bulk_io.S) (Value : Bulk_io.S) : S with module Key = Key and module Field = Bulk_io.String and module Value = Value
module Make_field (Key : Bulk_io.S) (Field : Bulk_io.S) (Value : Bulk_io.S) : S with module Key = Key and module Field = Field and module Value = Value