You can search for identifiers within the package.
in-package search v0.2.0
hiredis
Hiredis.Pool
A pool is used to access one server using many clients
type t = Client.t Lwt_pool.t
val create : ?port:int -> string -> int -> t
create ~port host n creates a new pool of n clients listening on host:port
create ~port host n
n
host:port
val use : t -> (Client.t -> 'a Lwt.t) -> 'a Lwt.t
use pool returns a new client from the pool
use pool