Skip to content

Commit

Permalink
fixed error in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
joewilliams committed Jan 17, 2009
1 parent 5b3f23e commit 6411eb5
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions README
Expand Up @@ -8,7 +8,7 @@ Info : http://github.com/joewilliams/merle/
This code is available as Open Source Software under the MIT license.

Features:
* Support for stats, version, get, delete, set, add, replace, append, prepend, cas
* Support for stats, version, get, delete, set, add, replace, cas
* Supports making calls to memcached directly as well as through gen_server

To Do:
Expand All @@ -34,7 +34,7 @@ Usage:
2> merle:start_link("localhost", 11211).
{ok,<0.38.0>}

* Set and get some data *
* Set and get some data *

9> merle:set("b", "1", "0", [asdf,[{asdf, asdf}, asdf]]).
["STORED"]
Expand All @@ -48,7 +48,7 @@ Usage:

* Get memcached stats *

12> merle:stats().
12> merle:stats().
["STAT pid 12177","STAT uptime 6146","STAT time 1231993128",
"STAT version 1.2.6","STAT pointer_size 64",
"STAT rusage_user 0.008000","STAT rusage_system 0.000000",
Expand Down Expand Up @@ -76,7 +76,7 @@ Usage:

13> merle:set("localhost", 11211, "a", "1", "0", asdf).
["STORED"]
14> merle:get("localhost", 11211, "a").
14> merle:get("localhost", 11211, "a").
[asdf]


Expand Down Expand Up @@ -122,4 +122,3 @@ cas(Key, Flag, ExpTime, CasUniq, Data)
cas(Host, Port, Key, Flag, ExpTime, CasUniq, Data)

quit()

0 comments on commit 6411eb5

Please sign in to comment.