tvl-depot/assessments/semiprimes/server/lib/cache.ex
William Carroll 714ec29743 Define Cache and convert app to OTP
Define a simple in-memory key-value store for our cache.

TL;DR:
- Define `Cache` as a simple state-keeping `Agent`
- Define `Sup`, which starts our Cache process
- Define `App`, which starts our Supervisor process
- Whitelist `App` in `mix.exs`, so that it starts after calling `iex -S mix`
2020-12-12 01:04:39 +00:00

27 lines
527 B
Elixir

defmodule Cache do
@moduledoc """
Cache is an in-memory key-value store.
"""
use Agent
@doc """
Inititalize the key-value store.
"""
def start_link(_) do
Agent.start_link(fn -> %{} end, name: __MODULE__)
end
@doc """
Attempt to return the value stored at `key`
"""
def get(key) do
Agent.get(__MODULE__, &Map.get(&1, key))
end
@doc """
Write the `value` under the `key`. Last writer wins.
"""
def put(key, value) do
Agent.update(__MODULE__, &Map.put(&1, key, value))
end
end