You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;
Blocking using Redis
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!");
};