forked from cabol/nebulex_examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
erlang_cache.erl
39 lines (28 loc) · 928 Bytes
/
erlang_cache.erl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
-module(erlang_cache).
%% Application callbacks
-export([run_test/0]).
-define(nbx_cache, 'Elixir.NbxCache').
%%====================================================================
%% API
%%====================================================================
run_test() ->
io:format("Testing or 'NbxCache' ...~n~n"),
io:format(
"#==> 'Elixir.NbxCache':get(my_key) -> ~p~n",
[?nbx_cache:get(my_key)]),
io:format(
"#==> 'Elixir.NbxCache':set(my_key, hello) -> ~p~n",
[?nbx_cache:set(my_key, hello)]),
io:format(
"#==> 'Elixir.NbxCache':get(my_key) -> ~p~n",
[?nbx_cache:get(my_key)]),
io:format(
"#==> 'Elixir.NbxCache':delete(my_key) -> ~p~n",
[?nbx_cache:delete(my_key)]),
io:format(
"#==> 'Elixir.NbxCache':get(my_key) -> ~p~n",
[?nbx_cache:get(my_key)]),
io:format(
"~n#==> STATS:~n~p~n",
['Elixir.Nebulex.Cache.Stats':get_counters(?nbx_cache)]),
ok.