Memcache.Connection.execute_quiet
You're seeing just the function
execute_quiet
, go back to Memcache.Connection module for more information.
Specs
execute_quiet(GenServer.server(), [ {atom(), [binary()]} | {atom(), [binary()], Keyword.t()} ]) :: {:ok, [Memcache.result()]} | {:error, atom()}
Executes the list of quiet commands
Examples
iex> {:ok, pid} = Memcache.Connection.start_link()
iex> {:ok, [{:ok}, {:ok}]} = Memcache.Connection.execute_quiet(pid, [{:SETQ, ["1", "one"]}, {:SETQ, ["2", "two"]}])
iex> Memcache.Connection.execute_quiet(pid, [{:GETQ, ["1"]}, {:GETQ, ["2"]}])
{:ok, [{:ok, "one"}, {:ok, "two"}]}