my $redis = Redis.new("127.0.0.1:6379");
$redis.set("key", "value");
say $redis.get("key");
say $redis.info();
$redis.quit();
Testing this will require redis-server to be installed on your machine. The tests will start their own version of the redis server on a different port so as not to interfere with a running server. If no redis-server can be found on your machine the tests will be skipped so you will still be able to install this module.
Assuming you have a working rakudo perl 6 installation then you should be able to install this with zef:
zef install Redis
or if you have a local copy of the library:
zef install .
Tested agaist Redis version 2.4.16, 2.5.12 and 4.0.9
$ p6doc Redis