hanoidb/rebar.config
Kresten Krab Thorup d37b227936 Implement compression + block size
option {compression, none|gzip|snappy}

... except right now using snappy is broken,
it seems that it causes bloom filters to
crash. Needs investigation.

option {block_size, 32768} 

... writes data to disk in chunks of ~32k.
2012-04-23 03:49:08 +02:00

15 lines
750 B
Erlang

{cover_enabled, true}.
%% define 'PROPER' in stead if you must...
{erl_opts, [debug_info,{d,'TRIQ',true}]}.
{deps, [
{snappy, "1.0.*", {git, "git://github.com/fdmanana/snappy-erlang-nif.git", {branch, "master"}}},
{plain_fsm, "1.1.*", {git, "git://github.com/uwiger/plain_fsm", {branch, "master"}}},
{ebloom, "1.1.*", {git, "git://github.com/basho/ebloom.git", {branch, "master"}}},
{basho_bench, ".*", {git, "git://github.com/basho/basho_bench.git", {branch, "master"}}},
{triq, ".*", {git, "git://github.com/krestenkrab/triq.git", {branch, "master"}}},
{proper, ".*", {git, "git://github.com/manopapad/proper.git",
{branch, "master"}}}
]}.