Skip to content

raku-community-modules/Redis

This branch is 22 commits ahead of cofyc/perl6-redis:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Mar 9, 2025
0bd064c · Mar 9, 2025

History

85 Commits
Jan 14, 2025
Jan 14, 2025
Mar 8, 2025
Mar 9, 2025
Jan 14, 2025
Jan 14, 2025
Dec 12, 2018
Mar 9, 2025
Sep 3, 2012
Mar 9, 2025
Mar 9, 2025
Sep 6, 2012
Jan 14, 2025
Jan 14, 2025

Repository files navigation

Actions Status Actions Status

NAME

Redis - a Raku binding for Redis

SYNOPSIS

use Redis;

my $redis = Redis.new("127.0.0.1:6379");
$redis.set("key", "value");
say $redis.get("key");
say $redis.info;
$redis.quit;

DESCRIPTION

Redis provides a Raku interface to the Redis server.

METHODS

new

method new(Str $server?, Str :$encoding?, Bool :$decode_response?)

Returns the redis object.

exec_command

method exec_command(Str $command, *@args) returns Any

Executes arbitrary command.

AUTHORs

  • Yecheng Fu

  • Raku Community

COPYRIGHT AND LICENSE

Copyright 2012 - 2018 Yecheng Fu

Copyright 2024, 2025 Raku Community

This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.