Packages

Simple memory database for Erlang application using MVCC to store the data.

Current section

Files

Jump to
memstore src memstore_app.erl
Raw

src/memstore_app.erl

%% Copyright (c) 2017-present. Benoit Chesneau
%%
%% This source code is licensed under the MIT license found in the
%% LICENSE file in the root directory of this source tree.
%%%-------------------------------------------------------------------
%% @doc memstore public API
%% @end
%%%-------------------------------------------------------------------
-module(memstore_app).
-behaviour(application).
%% Application callbacks
-export([start/2, stop/1]).
%%====================================================================
%% API
%%====================================================================
start(_StartType, _StartArgs) ->
memstore_sup:start_link().
%%--------------------------------------------------------------------
stop(_State) ->
ok.
%%====================================================================
%% Internal functions
%%====================================================================