Memcache.Connection.close

You're seeing just the function close, go back to Memcache.Connection module for more information.

Specs

close(GenServer.server()) :: {:ok}

Closes the connection to the memcached server.

Examples

iex> {:ok, pid} = Memcache.Connection.start_link()
iex> Memcache.Connection.close(pid)
{:ok}