Skip to content

Commit

Permalink
vsn 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
japerk committed Jul 15, 2010
1 parent de337df commit 2d09e9e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ebin/erldis.app
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, erldis, [
{description, "Erlang Redis application"},
{vsn, "0.3.1"},
{vsn, "0.3.2"},
{registered, [erldis_sup]},
{mod, {erldis_app, []}},
{applications, [kernel, stdlib]},
Expand Down
4 changes: 3 additions & 1 deletion ebin/erldis.appup
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{"0.3.1", [
{"0.3.2", [
{"0.3.1", [{load_module, erldis}]},
{"0.3.0", [
{load_module, erldis_proto},
{load_module, erldis_client}
Expand Down Expand Up @@ -70,6 +71,7 @@
{add_module, erldis_sets}
]}
], [
{"0.3.1", [{load_module, erldis}]},
{"0.3.0", [
{load_module, erldis_proto},
{load_module, erldis_client}
Expand Down
2 changes: 0 additions & 2 deletions src/erldis.erl
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ del(Client, Key) -> erldis_client:sr_scall(Client, [<<"del">>, Key]).
type(Client, Key) -> erldis_client:sr_scall(Client, [<<"type">>, Key]).

keys(Client, Pattern) ->
% TODO: tokenize the binary directly (if is faster)
% NOTE: with binary-list conversion, timer:tc says 26000-30000 microseconds
case erldis_client:scall(Client, [<<"keys">>, Pattern]) of
[] -> [];
B -> B
Expand Down

0 comments on commit 2d09e9e

Please sign in to comment.