Redix.stop
You're seeing just the function
stop
, go back to Redix module for more information.
Specs
stop(connection(), timeout()) :: :ok
Closes the connection to the Redis server.
This function is synchronous and blocks until the given Redix connection frees
all its resources and disconnects from the Redis server. timeout
can be
passed to limit the amount of time allowed for the connection to exit; if it
doesn't exit in the given interval, this call exits.
Examples
iex> Redix.stop(conn)
:ok