![]() |
![]()
| ![]() |
![]()
NAMEAnyEvent::Redis - Non-blocking Redis clientSYNOPSISuse AnyEvent::Redis; my $redis = AnyEvent::Redis->new( host => '127.0.0.1', port => 6379, encoding => 'utf8', on_error => sub { warn @_ }, on_cleanup => sub { warn "Connection closed: @_" }, ); # callback based $redis->set( 'foo'=> 'bar', sub { warn "SET!" } ); $redis->get( 'foo', sub { my $value = shift } ); my ($key, $value) = ('list_key', 123); $redis->lpush( $key, $value ); $redis->lpop( $key, sub { my $value = shift }); # condvar based my $cv = $redis->lpop( $key ); $cv->cb(sub { my $value = $_[0]->recv }); DESCRIPTIONAnyEvent::Redis is a non-blocking (event-driven) Redis client.This module is an AnyEvent user; you must install and use a supported event loop. ESTABLISHING A CONNECTIONTo create a new connection, use the new() method with the following attributes:
METHODSAll methods supported by your version of Redis should be supported.Normal commandsThere are two alternative approaches for handling results from commands:
Transactions (MULTI/EXEC)Redis transactions begin with a "multi" command and end with an "exec" command. Commands in between are not executed immediately when they're sent. On receipt of the "exec", the server executes all the saved commands atomically, and returns all their results as one bulk reply.After a transaction is finished, results for each individual command are reported in the usual way. Thus, by the time any of these callbacks is called, the entire transaction is finished for better or worse. Results of the "exec" (containing all the other results) will be returned as an array reference containing all of the individual results. This may in some cases make callbacks on the individual commands unnecessary, or vice versa. In this bulk reply, errors reported for each individual command are represented by objects of class "AnyEvent::Redis::Error", which will respond to a "->message" method call with that error message. It is not permitted to nest transactions. This module does not permit subscription-related commands in a transaction. SubscriptionsThe subscription methods ("subscribe" and "psubscribe") must be used with a callback:my $cv = $redis->subscribe("test", sub { my ($message, $channel[, $actual_channel]) = @_; # ($actual_channel is provided for pattern subscriptions.) }); The $cv condition will be met on unsubscribing from the channel. Due to limitations of the Redis protocol the only valid commands on a connection with an active subscription are subscribe and unsubscribe commands. Common methods
The Redis command reference (<http://redis.io/commands>) lists all commands Redis supports. REQUIREMENTSThis requires Redis >= 1.2.COPYRIGHTTatsuhiko Miyagawa <miyagawa@bulknews.net> 2009-LICENSEThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.AUTHORSTatsuhiko MiyagawaDavid Leadbeater Chia-liang Kao franck cuny Lee Aylward Joshua Barratt Jeremy Zawodny Leon Brocard Michael S. Fischer Chip Salzenberg SEE ALSORedis, AnyEvent
|