nova_session_ets (NOVA vv0.8.0)
Link to this section Summary
Link to this section Functions
Link to this function
delete_value(SessionId)
Specs
delete_value(SessionId :: binary()) -> ok | {error, Reason :: term()}.
Link to this function
delete_value(SessionId, Key)
Specs
delete_value(SessionId :: binary(), Key :: binary()) -> ok | {error, Reason :: term()}.
Link to this function
get_value(SessionId, Key)
Specs
get_value(SessionId :: binary(), Key :: binary()) -> {ok, Value :: binary()} | {error, not_found}.
Link to this function
set_value(SessionId, Key, Value)
Specs
set_value(SessionId :: binary(), Key :: binary(), Value :: binary()) ->
ok | {error, Reason :: term()}.
Link to this function
start_link()
Specs
start_link() ->
{ok, Pid :: pid()} |
{error, Error :: {already_started, pid()}} |
{error, Error :: term()} |
ignore.