2012-04-19 22:09:01 +00:00
|
|
|
%% ----------------------------------------------------------------------------
|
|
|
|
%%
|
2012-05-07 15:22:55 +00:00
|
|
|
%% hanoidb: LSM-trees (Log-Structured Merge Trees) Indexed Storage
|
2012-04-19 22:09:01 +00:00
|
|
|
%%
|
|
|
|
%% Copyright 2011-2012 (c) Trifork A/S. All Rights Reserved.
|
|
|
|
%% http://trifork.com/ info@trifork.com
|
|
|
|
%%
|
|
|
|
%% Copyright 2012 (c) Basho Technologies, Inc. All Rights Reserved.
|
|
|
|
%% http://basho.com/ info@basho.com
|
|
|
|
%%
|
|
|
|
%% This file is provided to you under the Apache License, Version 2.0 (the
|
|
|
|
%% "License"); you may not use this file except in compliance with the License.
|
|
|
|
%% You may obtain a copy of the License at
|
|
|
|
%%
|
|
|
|
%% http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
%%
|
|
|
|
%% Unless required by applicable law or agreed to in writing, software
|
|
|
|
%% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
%% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
%% License for the specific language governing permissions and limitations
|
|
|
|
%% under the License.
|
|
|
|
%%
|
|
|
|
%% ----------------------------------------------------------------------------
|
|
|
|
|
2012-05-07 15:22:55 +00:00
|
|
|
-module(hanoidb_writer_tests).
|
2012-01-06 21:56:23 +00:00
|
|
|
|
|
|
|
-ifdef(TEST).
|
|
|
|
-include_lib("proper/include/proper.hrl").
|
|
|
|
-include_lib("eunit/include/eunit.hrl").
|
|
|
|
-endif.
|
|
|
|
|
2012-05-07 15:22:55 +00:00
|
|
|
-include("include/hanoidb.hrl").
|
2012-04-28 16:35:35 +00:00
|
|
|
|
2012-01-06 21:56:23 +00:00
|
|
|
-compile(export_all).
|
|
|
|
|
|
|
|
simple_test() ->
|
|
|
|
|
2012-04-28 16:35:35 +00:00
|
|
|
file:delete("testdata"),
|
2012-05-07 15:22:55 +00:00
|
|
|
{ok, BT} = hanoidb_writer:open("testdata"),
|
|
|
|
ok = hanoidb_writer:add(BT, <<"A">>, <<"Avalue">>),
|
|
|
|
ok = hanoidb_writer:add(BT, <<"B">>, <<"Bvalue">>),
|
|
|
|
ok = hanoidb_writer:close(BT),
|
2012-01-06 21:56:23 +00:00
|
|
|
|
2012-05-07 15:22:55 +00:00
|
|
|
{ok, IN} = hanoidb_reader:open("testdata"),
|
|
|
|
{ok, <<"Avalue">>} = hanoidb_reader:lookup(IN, <<"A">>),
|
|
|
|
ok = hanoidb_reader:close(IN),
|
2012-01-06 21:56:23 +00:00
|
|
|
|
|
|
|
ok = file:delete("testdata").
|
|
|
|
|
|
|
|
|
|
|
|
simple1_test() ->
|
|
|
|
|
2012-04-28 16:35:35 +00:00
|
|
|
file:delete("testdata"),
|
2012-05-07 15:22:55 +00:00
|
|
|
{ok, BT} = hanoidb_writer:open("testdata", [{block_size, 1024}]),
|
2012-01-06 21:56:23 +00:00
|
|
|
|
2012-04-28 16:35:35 +00:00
|
|
|
Max = 1024,
|
2012-01-06 21:56:23 +00:00
|
|
|
Seq = lists:seq(0, Max),
|
|
|
|
|
|
|
|
{Time1,_} = timer:tc(
|
|
|
|
fun() ->
|
|
|
|
lists:foreach(
|
|
|
|
fun(Int) ->
|
2012-05-07 15:22:55 +00:00
|
|
|
ok = hanoidb_writer:add(BT, <<Int:128>>, <<"valuevalue/", Int:128>>)
|
2012-01-06 21:56:23 +00:00
|
|
|
end,
|
|
|
|
Seq),
|
2012-05-07 15:22:55 +00:00
|
|
|
ok = hanoidb_writer:close(BT)
|
2012-01-06 21:56:23 +00:00
|
|
|
end,
|
|
|
|
[]),
|
|
|
|
|
|
|
|
error_logger:info_msg("time to insert: ~p/sec~n", [1000000/(Time1/Max)]),
|
|
|
|
|
2012-05-07 15:22:55 +00:00
|
|
|
{ok, IN} = hanoidb_reader:open("testdata"),
|
2012-04-28 16:35:35 +00:00
|
|
|
Middle = Max div 2,
|
2012-05-07 15:22:55 +00:00
|
|
|
{ok, <<"valuevalue/", Middle:128>>} = hanoidb_reader:lookup(IN, <<Middle:128>>),
|
2012-01-06 21:56:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
{Time2,Count} = timer:tc(
|
2012-05-07 15:22:55 +00:00
|
|
|
fun() -> hanoidb_reader:fold(fun(Key, <<"valuevalue/", Key/binary>>, N) ->
|
2012-01-06 21:56:23 +00:00
|
|
|
N+1
|
|
|
|
end,
|
|
|
|
0,
|
|
|
|
IN)
|
|
|
|
end,
|
|
|
|
[]),
|
|
|
|
|
|
|
|
error_logger:info_msg("time to scan: ~p/sec~n", [1000000/(Time2/Max)]),
|
|
|
|
|
|
|
|
Max = Count-1,
|
|
|
|
|
2012-04-28 16:35:35 +00:00
|
|
|
{Time3,{done,Count2}} = timer:tc(
|
2012-05-07 15:22:55 +00:00
|
|
|
fun() -> hanoidb_reader:range_fold(fun(Key, <<"valuevalue/", Key/binary>>, N) ->
|
2012-04-28 16:35:35 +00:00
|
|
|
N+1
|
|
|
|
end,
|
|
|
|
0,
|
|
|
|
IN,
|
2012-05-07 15:22:55 +00:00
|
|
|
#key_range{ from_key= <<>>, to_key=undefined })
|
2012-04-28 16:35:35 +00:00
|
|
|
end,
|
|
|
|
[]),
|
2012-01-06 21:56:23 +00:00
|
|
|
|
2012-04-28 16:35:35 +00:00
|
|
|
error_logger:info_msg("time to range_fold: ~p/sec~n", [1000000/(Time3/Max)]),
|
|
|
|
|
|
|
|
error_logger:info_msg("count2=~p~n", [Count2]),
|
|
|
|
|
|
|
|
Max = Count2-1,
|
|
|
|
|
2012-05-07 15:22:55 +00:00
|
|
|
ok = hanoidb_reader:close(IN).
|
2012-01-06 21:56:23 +00:00
|
|
|
|