Mnemonix v0.4.0 Mnemonix.Memcachex.Store
A Mnemonix.Store
that uses Memcachex to store state in memcached.
iex> {:ok, store} = Mnemonix.Memcachex.Store.start_link
iex> Mnemonix.put(store, :foo, "bar")
iex> Mnemonix.get(store, :foo)
"bar"
iex> Mnemonix.delete(store, :foo)
iex> Mnemonix.get(store, :foo)
nil
Summary
Functions
Callback implementation for c:Mnemonix.Store.Core.Behaviour.delete/2
Callback implementation for c:Mnemonix.Store.Core.Behaviour.fetch/2
Callback implementation for c:Mnemonix.Store.Core.Behaviour.put/3
Connects to memcached to store data
Starts a new Mnemonix.Store
using the Mnemonix.Memcachex.Store
module
Starts a new Mnemonix.Store
using the Mnemonix.Memcachex.Store
module
with init
opts
Functions
Callback implementation for c:Mnemonix.Store.Core.Behaviour.delete/2
.
Callback implementation for c:Mnemonix.Store.Core.Behaviour.fetch/2
.
Callback implementation for c:Mnemonix.Store.Core.Behaviour.put/3
.
Connects to memcached to store data.
All options are passed verbatim to Memcache.start_link/1
.
Starts a new Mnemonix.Store
using the Mnemonix.Memcachex.Store
module.
If you wish to pass configuration options to the module instead,
use start_link/2
with an empty opts
list.
The returned GenServer.server/0
reference can be used as the primary
argument to the Mnemonix
API.
Examples
iex> {:ok, store} = Mnemonix.Memcachex.Store.start_link
iex> Mnemonix.put(store, :foo, "bar")
iex> Mnemonix.fetch(store, :foo)
{:ok, "bar"}
iex> Mnemonix.delete(store, :foo)
iex> Mnemonix.fetch(store, :foo)
:error
Starts a new Mnemonix.Store
using the Mnemonix.Memcachex.Store
module
with init
opts.
The returned GenServer.server/0
reference can be used as the primary
argument to the Mnemonix
API.