my $redis = Redis.new("127.0.0.1:6379");
$redis.set("key", "value");
say $redis.get("key");
say $redis.info();
$redis.quit();
First, please get 'ufo' from http://github.com/masak/ufo , then run:
$ ufo
$ make
$ make test # run `redis-server t/redis.conf` in another terminal first
$ make install
$ panda install --notests Redis # unit tests need Redis server
Tested agaist Redis version 2.4.16 and 2.5.12.
$ p6doc Redis