Search
@type client() :: struct()
@type command_t() :: [binary() | bitstring()]
@type resp_t() :: {:ok, term()} | {:error, term()}
@callback command(client(), command_t(), keyword()) :: resp_t()
@callback new(keyword()) :: client()
@callback pipeline(client(), [command_t()], keyword()) :: resp_t()
@callback start_link(keyword()) :: LibRedis.Typespecs.on_start()