forked from mojolicious/mojo
-
Notifications
You must be signed in to change notification settings - Fork 0
Using Redis
und3f edited this page Nov 2, 2011
·
4 revisions
MojoX::Redis can be used for asynchronous communication with Redis.
$redis = MojoX::Redis->new(ioloop => Mojo::IOLoop->new);
$redis->set(test => "test_ok")->get(
test => sub {
my ($redis, $result) = @_;
die $redis->error unless defined $result;
print qq|"result" = "|, $result->[0], qq|"\n|;
$redis->ioloop->stop;
}
)->start;
Sometimes a simple, blocking client is enough.
use Mojolicious::Lite;
use Redis;
my $redis = Redis->new;
# This under block is only needed, if your
# connections time out. Check the settings
# of your database.
under sub {
$redis = Redis->new;
};
get '/' => sub {
my $self = shift;
my $counter = $redis->incr('counter');
$self->render(text => "Counter: $counter!");
};