Skip to content

Commit

Permalink
finish keys/strings/hashes commands
Browse files Browse the repository at this point in the history
  • Loading branch information
cofyc committed Sep 4, 2012
1 parent 8d932a5 commit 352e5da
Show file tree
Hide file tree
Showing 5 changed files with 518 additions and 34 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
/.DS_Store
11 changes: 10 additions & 1 deletion README.md
Expand Up @@ -2,7 +2,16 @@

Port of Redis from Perl 5.

Current status: in development.
Synopsis
========

# create a Redis object
my $redis = Redis.new("192.168.1.12:6379");
# connect to server
$redis.connect();
# execute commands...
$redis.set("key", "value");
say $redis.get("key");

References
==========
Expand Down
7 changes: 4 additions & 3 deletions TODO
@@ -1,4 +1,5 @@
Commands
========
* quit
* ping
- sort

* complete method signatures
* support debug & timeout options

0 comments on commit 352e5da

Please sign in to comment.