Skip to content

Instantly share code, notes, and snippets.

@micahboyd
Created April 29, 2018 23:27
Show Gist options
  • Save micahboyd/09e48fb28489dc70829c42de184633a7 to your computer and use it in GitHub Desktop.
Save micahboyd/09e48fb28489dc70829c42de184633a7 to your computer and use it in GitHub Desktop.
Elixir GenServer practice
defmodule ServerProcess do
def start(callback_module) do
spawn(fn ->
initial_state = callback_module.init
loop(callback_module, initial_state)
end)
end
def call(server_pid, request) do
send(server_pid, {:call, request, self()})
receive do
{:response, response} -> response
end
end
def cast(server_pid, request) do
send(server_pid, {:cast, request})
end
defp loop(callback_module, current_state) do
receive do
{:call, request, caller} ->
{response, new_state} = callback_module.handle_call(request, current_state)
send(caller, {:response, response})
loop(callback_module, new_state)
{:cast, request} ->
new_state = callback_module.handle_cast(request, current_state)
IO.puts "casted"
loop(callback_module, new_state)
end
end
end
defmodule KeyValueStore do
def start do
ServerProcess.start(KeyValueStore)
end
def put(pid, key, value) do
ServerProcess.cast(pid, {:put, key, value})
end
def get(pid, key) do
ServerProcess.call(pid, {:get, key})
end
def init, do: %{}
def handle_cast({:put, key, value}, state) do
Map.put(state, key, value)
end
def handle_call({:get, key}, state) do
{Map.get(state, key), state}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment