@@ -1,6 +1,6 @@
-module(kvs).
-copyright('Synrc Research Center s.r.o.').
--compile(export_all).
+-compile([export_all, nowarn_export_all]).
%-include_lib("stdlib/include/qlc.hrl").
-include("config.hrl").
-include("metainfo.hrl").
-module(kvs_acl).
-include("kvs.hrl").
-include("acl.hrl").
-module(kvs_feed).
-copyright('Synrc Research Center, s.r.o.').
-include("entry.hrl").
@@ -2,7 +2,7 @@
-include("subscription.hrl").
metainfo() ->
#schema{name=kvs,tables=[
@@ -3,7 +3,7 @@
-include("user.hrl").
-include("group.hrl").
-include_lib("stdlib/include/qlc.hrl").
start() -> ok.
stop() -> ok.
@@ -4,7 +4,7 @@
-record(data, { key, bucket, last_modified, vector_clocks, checksum, flags, value }).
start() -> kai:start(), ok.
start() -> mnesia:start().
stop() -> mnesia:stop().
-author("Oleg Zinchenko").
-define(POOL_NAME,mongo_pool).
start() -> erase(eredis_pid), {ok,C}=eredis:start_link(), erlang:put(eredis_pid,C), ok.
stop() -> P=erase(eredis_pid), eredis:stop(P), ok.
@@ -9,7 +9,7 @@
-include("feed.hrl").
@@ -1,7 +1,7 @@
-module(store_sql).
-author('Daniil Churikov').
-author('Max Davidenko').
-include_lib("kvs/include/sql.hrl").
-include_lib("kvs/include/metainfo.hrl").
-include_lib("common_test/include/ct.hrl").
-include_lib("kvs/include/entry.hrl").
suite() -> [{timetrap,{seconds,30}}].
all() -> [{group, feed},{group,acl}].