1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
|
package Redis::Fast 0.37;
BEGIN {
use XSLoader;
XSLoader::load __PACKAGE__, $VERSION;
}
use warnings;
use strict;
use Carp qw/confess/;
use Encode;
use Try::Tiny;
use Scalar::Util qw(weaken);
use constant SSL_AVAILABLE => eval { require IO::Socket::SSL };
use Redis::Fast::Sentinel;
# small utilities for handling host and port
sub _join_host_port {
my ($host, $port) = @_;
return "[$host]:$port" if $host =~ /:/ || $host =~ /%/;
return "$host:$port";
}
sub _split_host_port {
my $hostport = shift;
if ($hostport =~ /\A\[([^\]]+)\]:([0-9]+)\z/) {
return $1, $2;
}
return split /:/, $hostport;
}
sub _new_on_connect_cb {
my ($self, $on_conn, $password, $name) = @_;
weaken $self;
my $handler = sub {
# If we are in PubSub mode we shouldn't perform any command besides
# (p)(un)subscribe
if (! $self->is_subscriber) {
defined $name
and try {
my $n = $name;
$n = $n->($self) if ref($n) eq 'CODE';
$self->client_setname($n) if defined $n;
};
my $data = $self->__get_data;
defined $data->{current_database}
and $self->select($data->{current_database});
}
my $subscribers = $self->__get_data->{subscribers};
$self->__get_data->{subscribers} = {};
$self->__get_data->{cbs} = undef;
foreach my $topic (CORE::keys(%{$subscribers})) {
if ($topic =~ /(p?message):(.*)$/ ) {
my ($key, $channel) = ($1, $2);
my $subs = $subscribers->{$topic};
if ($key eq 'message') {
$self->__subscription_cmd('', 0, subscribe => $channel, $_) for @$subs;
} else {
$self->__subscription_cmd('p', 0, psubscribe => $channel, $_) for @$subs;
}
}
}
defined $on_conn
and $on_conn->($self);
};
return sub {
my $reconnect_stash = $self->__get_reconnect;
if(defined $password) {
my $err;
$self->__set_reconnect(0);
try {
$self->auth($password);
} catch {
$err = $_;
};
if(defined $err) {
if($err =~ /ERR invalid password|WRONGPASS invalid username-password pair/) {
# password setting is incorrect, no need to reconnect
die("Redis server refused password");
} else {
# it might be network error
# invoke reconnect
$self->__set_reconnect($reconnect_stash);
return ;
}
}
}
try {
# disable reconnection while executing on_connect handler
$self->__set_reconnect(0);
$handler->();
} catch {
$self->quit();
} finally {
$self->__set_reconnect($reconnect_stash);
};
};
}
sub _new_reconnect_on_error_cb {
my ($self, $reconnect_on_error) = @_;
weaken $self;
if ($reconnect_on_error) {
return sub {
# The unit should be second and the type should be double.
# -1 is a special value, it means that we do not reconnect.
my $next_reconnect_interval = $reconnect_on_error->(@_);
if ($next_reconnect_interval < -1) {
warn "reconnect_on_error must not return a number less than -1";
# Reset a next_reconnect_interval and do not reconnect.
$next_reconnect_interval = -1;
}
# Wait until next_reconnect_interval seconds elapse.
$self->__set_next_reconnect_on_error_at($next_reconnect_interval);
my $need_reconnect = 0;
if (-1 < $next_reconnect_interval) {
$need_reconnect = 1;
}
return $need_reconnect;
};
} else {
return;
}
}
sub new {
my $class = shift;
my %args = @_;
my $self = $class->_new;
## Deal with REDIS_SERVER ENV
if ($ENV{REDIS_SERVER} && !$args{sock} && !$args{server}) {
if ($ENV{REDIS_SERVER} =~ m!^/!) {
$args{sock} = $ENV{REDIS_SERVER};
}
elsif ($ENV{REDIS_SERVER} =~ m!^unix:(.+)!) {
$args{sock} = $1;
}
elsif ($ENV{REDIS_SERVER} =~ m!^(tcp:)?(.+)!) {
$args{server} = $2;
}
}
my $on_conn = $args{on_connect};
my $password = $args{password};
my $name = $args{name};
$self->__set_on_connect($self->_new_on_connect_cb($on_conn, $password, $name));
$self->__set_data({
subscribers => {},
sentinels_cnx_timeout => $args{sentinels_cnx_timeout},
sentinels_read_timeout => $args{sentinels_read_timeout},
sentinels_write_timeout => $args{sentinels_write_timeout},
no_sentinels_list_update => $args{no_sentinels_list_update},
});
if ($args{sock}) {
$self->__connection_info_unix($args{sock});
} elsif ($args{sentinels}) {
my $sentinels = $args{sentinels};
ref $sentinels eq 'ARRAY'
or croak("'sentinels' param must be an ArrayRef");
defined($self->__get_data->{service} = $args{service})
or croak("Need 'service' name when using 'sentinels'!");
croak("Does not support SSL and sentinels") if exists $args{ssl} and $args{ssl};
$self->__get_data->{sentinels} = $sentinels;
$self->__get_data->{sentinels_password} = $args{sentinels_password};
my $on_build_sock = sub {
my $data = $self->__get_data;
my $sentinels = $data->{sentinels};
# try to connect to a sentinel
my $status;
foreach my $sentinel_address (@$sentinels) {
my $sentinel = eval {
Redis::Fast::Sentinel->new(
server => $sentinel_address,
password => $data->{sentinels_password},
cnx_timeout => ( exists $data->{sentinels_cnx_timeout}
? $data->{sentinels_cnx_timeout} : 0.1),
read_timeout => ( exists $data->{sentinels_read_timeout}
? $data->{sentinels_read_timeout} : 1 ),
write_timeout => ( exists $data->{sentinels_write_timeout}
? $data->{sentinels_write_timeout} : 1 ),
)
} or next;
my $server_address = $sentinel->get_service_address($data->{service});
defined $server_address
or $status ||= "Sentinels don't know this service",
next;
$server_address eq 'IDONTKNOW'
and $status = "service is configured in one Sentinel, but was never reached",
next;
# we found the service, set the server
my ($server, $port) = _split_host_port $server_address;
$self->__connection_info($server, $port);
if (! $data->{no_sentinels_list_update} ) {
# move the elected sentinel at the front of the list and add
# additional sentinels
my $idx = 2;
my %h = ( ( map { $_ => $idx++ } @{$data->{sentinels}}),
$sentinel_address => 1,
);
$data->{sentinels} = [
( sort { $h{$a} <=> $h{$b} } CORE::keys(%h) ), # sorted existing sentinels,
grep { ! $h{$_}; } # list of unknown
map {
my $s = +{ @$_ };
_join_host_port($s->{ip}, $s->{port});
} # ip:port of
$sentinel->sentinel( # sentinels
sentinels => $data->{service} # for this service
)
];
}
}
};
$self->__set_on_build_sock($on_build_sock);
} else {
my ($server, $port) = _split_host_port($args{server} || '127.0.0.1:6379');
$self->__connection_info($server, $port);
}
#$self->{is_subscriber} = 0;
#$self->{subscribers} = {};
$self->__set_reconnect($args{reconnect} || 0);
$self->__set_every($args{every} || 1000);
$self->__set_debug(($args{debug} || $ENV{REDIS_DEBUG}) ? 1 : 0);
$self->__set_cnx_timeout($args{cnx_timeout} || -1);
$self->__set_read_timeout($args{read_timeout} || -1);
$self->__set_write_timeout($args{write_timeout} || -1);
$self->__set_ssl($args{ssl} || 0);
if ($args{ssl} && SSL_AVAILABLE && $args{SSL_verify_mode}) {
# To pass the SSL verify mode to the underlying bindings, we'll use a string
$self->__set_ssl_verify_mode("SSL_VERIFY_NONE") if ($args{SSL_verify_mode} == IO::Socket::SSL::SSL_VERIFY_NONE);
$self->__set_ssl_verify_mode("SSL_VERIFY_PEER") if ($args{SSL_verify_mode} == IO::Socket::SSL::SSL_VERIFY_PEER);
$self->__set_ssl_verify_mode("SSL_VERIFY_FAIL_IF_NO_PEER_CERT") if ($args{SSL_verify_mode} == IO::Socket::SSL::SSL_VERIFY_FAIL_IF_NO_PEER_CERT);
$self->__set_ssl_verify_mode("SSL_VERIFY_CLIENT_ONCE") if ($args{SSL_verify_mode} == IO::Socket::SSL::SSL_VERIFY_CLIENT_ONCE);
}
if (my $cb = $self->_new_reconnect_on_error_cb($args{reconnect_on_error})) {
$self->__set_reconnect_on_error($cb);
}
$self->connect unless $args{no_auto_connect_on_new};
return $self;
}
### Deal with common, general case, Redis commands
our $AUTOLOAD;
sub AUTOLOAD {
my $command = $AUTOLOAD;
$command =~ s/.*://;
my @command = split /_/, uc $command;
my $method = sub {
my $self = shift;
$self->__is_valid_command($command);
my ($ret, $error) = $self->__std_cmd(@command, @_);
confess "[$command] $error, " if defined $error;
return (wantarray && ref $ret eq 'ARRAY') ? @$ret : $ret;
};
# Save this method for future calls
no strict 'refs';
*$AUTOLOAD = $method;
goto $method;
}
sub __with_reconnect {
my ($self, $cb) = @_;
confess "not implemented";
}
### Commands with extra logic
sub keys {
my $self = shift;
$self->__is_valid_command('keys');
my ($ret, $error) = $self->__keys(@_);
confess "[keys] $error, " if defined $error;
return $ret unless ref $ret eq 'ARRAY';
return @$ret;
}
sub ping {
my $self = shift;
$self->__is_valid_command('ping');
return unless $self->__sock;
return scalar try {
my ($ret, $error) = $self->__std_cmd('ping');
return if defined $error;
return $ret;
} catch {
return ;
};
}
sub info {
my $self = shift;
$self->__is_valid_command('info');
my ($ret, $error) = $self->__info(@_);
confess "[info] $error, " if defined $error;
return $ret unless ref $ret eq 'ARRAY';
return @$ret;
}
sub quit {
my $self = shift;
$self->__is_valid_command('quit');
$self->__quit(@_);
}
sub shutdown {
my $self = shift;
$self->__is_valid_command('shutdown');
$self->__shutdown(@_);
}
sub select {
my $self = shift;
my $database = shift;
$self->__is_valid_command('select');
my ($ret, $error) = $self->__std_cmd('SELECT', $database, @_);
confess "[SELECT] $error, " if defined $error;
$self->__get_data->{current_database} = $database;
return $ret;
}
sub __subscription_cmd {
my $self = shift;
my $pr = shift;
my $unsub = shift;
my $command = shift;
my $cb = pop;
weaken $self;
confess("Missing required callback in call to $command(), ")
unless ref($cb) eq 'CODE';
$self->wait_all_responses;
while($self->__get_data->{cbs}) {
$self->__wait_for_event(1);
}
my @subs = @_;
@subs = $self->__process_unsubscribe_requests($cb, $pr, @subs)
if $unsub;
if(@subs) {
$self->__get_data->{cbs} = { map { ("${pr}message:$_" => $cb) } @subs };
for my $sub(@subs) {
$self->__send_subscription_cmd(
$command,
$sub,
$self->__subscription_callbak,
);
}
while($self->__get_data->{cbs}) {
$self->__wait_for_event(1);
}
}
}
sub __subscription_callbak {
my $self = shift;
my $cb = $self->__get_data->{callback};
return $cb if $cb;
weaken $self;
$cb = sub {
my $cbs = $self->__get_data->{cbs};
if($cbs) {
$self->__process_subscription_changes($cbs, @_);
unless(%$cbs) {
$self->__get_data->{cbs} = undef;
}
} else {
$self->__process_pubsub_msg(@_);
}
};
$self->__get_data->{callback} = $cb;
return $cb;
}
sub subscribe { shift->__subscription_cmd('', 0, subscribe => @_) }
sub psubscribe { shift->__subscription_cmd('p', 0, psubscribe => @_) }
sub unsubscribe { shift->__subscription_cmd('', 1, unsubscribe => @_) }
sub punsubscribe { shift->__subscription_cmd('p', 1, punsubscribe => @_) }
sub __process_unsubscribe_requests {
my ($self, $cb, $pr, @unsubs) = @_;
my $subs = $self->__get_data->{subscribers};
my @subs_to_unsubscribe;
for my $sub (@unsubs) {
my $key = "${pr}message:$sub";
next unless $subs->{$key} && @{ $subs->{$key} };
my $cbs = $subs->{$key} = [grep { $_ ne $cb } @{ $subs->{$key} }];
next if @$cbs;
delete $subs->{$key};
push @subs_to_unsubscribe, $sub;
}
return @subs_to_unsubscribe;
}
sub __process_subscription_changes {
my ($self, $expected, $m, $error) = @_;
my $subs = $self->__get_data->{subscribers};
## Deal with pending PUBLISH'ed messages
if ($m->[0] =~ /^p?message$/) {
$self->__process_pubsub_msg($m);
return ;
}
my ($key, $unsub) = $m->[0] =~ m/^(p)?(un)?subscribe$/;
$key .= "message:$m->[1]";
my $cb = delete $expected->{$key};
push @{ $subs->{$key} }, $cb unless $unsub;
}
sub __process_pubsub_msg {
my ($self, $m) = @_;
my $subs = $self->__get_data->{subscribers};
my $sub = $m->[1];
my $cbid = "$m->[0]:$sub";
my $data = pop @$m;
my $topic = defined $m->[2] ? $m->[2] : $sub;
if (!exists $subs->{$cbid}) {
warn "Message for topic '$topic' ($cbid) without expected callback, ";
return 0;
}
$_->($data, $topic, $sub) for @{ $subs->{$cbid} };
return 1;
}
sub __is_valid_command {
my ($self, $cmd) = @_;
confess("Cannot use command '$cmd' while in SUBSCRIBE mode, ")
if $self->is_subscriber;
}
1; # End of Redis.pm
__END__
=encoding utf-8
=head1 NAME
Redis::Fast - Perl binding for Redis database
=head1 SYNOPSIS
## Defaults to $ENV{REDIS_SERVER} or 127.0.0.1:6379
my $redis = Redis::Fast->new;
my $redis = Redis::Fast->new(server => 'redis.example.com:8080');
## Set the connection name (requires Redis 2.6.9)
my $redis = Redis::Fast->new(
server => 'redis.example.com:8080',
name => 'my_connection_name',
);
my $generation = 0;
my $redis = Redis::Fast->new(
server => 'redis.example.com:8080',
name => sub { "cache-$$-".++$generation },
);
## Use Sentinels, possibly with password
my $redis = Redis::Fast->new(
sentinels => [ '10.0.0.1:16379', '10.0.0.2:16379', ],
service => 'mymaster',
sentinels_password => 'TheB1gS3CR3T', # optional
);
## Use UNIX domain socket
my $redis = Redis::Fast->new(sock => '/path/to/socket');
## Enable auto-reconnect
## Try to reconnect every 500ms up to 60 seconds until success
## Die if you can't after that
my $redis = Redis::Fast->new(reconnect => 60, every => 500_000);
## Try each 100ms up to 2 seconds (every is in microseconds)
my $redis = Redis::Fast->new(reconnect => 2, every => 100_000);
## Disable the automatic utf8 encoding => much more performance
## !!!! This will be the default after 2.000, see ENCODING below
my $redis = Redis::Fast->new(encoding => undef);
## Use all the regular Redis commands, they all accept a list of
## arguments
## See http://redis.io/commands for full list
$redis->get('key');
$redis->set('key' => 'value');
$redis->sort('list', 'DESC');
$redis->sort(qw{list LIMIT 0 5 ALPHA DESC});
## Add a coderef argument to run a command in the background
$redis->sort(qw{list LIMIT 0 5 ALPHA DESC}, sub {
my ($reply, $error) = @_;
die "Oops, got an error: $error\n" if defined $error;
print "$_\n" for @$reply;
});
long_computation();
$redis->wait_all_responses;
## or
$redis->wait_one_response();
## Or run a large batch of commands in a pipeline
my %hash = _get_large_batch_of_commands();
$redis->hset('h', $_, $hash{$_}, sub {}) for keys %hash;
$redis->wait_all_responses;
## Publish/Subscribe
$redis->subscribe(
'topic_1',
'topic_2',
sub {
my ($message, $topic, $subscribed_topic) = @_
## $subscribed_topic can be different from topic if
## you use psubscribe() with wildcards
}
);
$redis->psubscribe('nasdaq.*', sub {...});
## Blocks and waits for messages, calls subscribe() callbacks
## ... forever
my $timeout = 10;
$redis->wait_for_messages($timeout) while 1;
## ... until some condition
my $keep_going = 1; ## other code will set to false to quit
$redis->wait_for_messages($timeout) while $keep_going;
$redis->publish('topic_1', 'message');
=head1 DESCRIPTION
C<Redis::Fast> is a wrapper around Salvatore Sanfilippo's
L<hiredis|https://github.com/redis/hiredis> C client.
It is compatible with L<Redis.pm|https://github.com/melo/perl-redis>.
This version supports protocol 2.x (multi-bulk) or later of Redis available at
L<https://github.com/antirez/redis/>.
=head2 Reconnect on error
Besides auto-reconnect when the connection is closed, C<Redis::Fast> supports
reconnecting on the specified errors by the C<reconnect_on_error> option.
Here's an example that will reconnect when receiving C<READONLY> error:
my $r = Redis::Fast->new(
reconnect => 1, # The value greater than 0 is required
reconnect_on_error => sub {
my ($error, $ret, $command) = @_;
if ($error =~ /READONLY You can't write against a read only slave/) {
# force reconnect
return 1;
}
# do nothing
return -1;
},
);
This feature is useful when using Amazon ElastiCache.
Once failover happens, Amazon ElastiCache will switch the master
we currently connected with to a slave,
leading to the following writes fails with the error C<READONLY>.
Using C<reconnect_on_error>, we can force the connection to reconnect on this error
in order to connect to the new master.
If your Elasticache Redis is enabled to be set an option for L<close-on-slave-write|https://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/ParameterGroups.Redis.html#ParameterGroups.Redis.2-8-23>,
this feature might be unnecessary.
The return value of C<reconnect_on_error> should be greater than C<-2>. C<-1> means that
C<Redis::Fast> behaves the same as without this option. C<0> and greater than C<0>
means that C<Redis::Fast> forces to reconnect and then
wait for a next force reconnect until this value seconds elapse.
This unit is a second, and the type is double. For example, 0.01 means 10 milliseconds.
Note: This feature is not supported for the subscribed mode.
=head1 PERFORMANCE IN SYNCHRONIZE MODE
=head2 Redis.pm
Benchmark: running 00_ping, 10_set, 11_set_r, 20_get, 21_get_r, 30_incr, 30_incr_r, 40_lpush, 50_lpop, 90_h_get, 90_h_set for at least 5 CPU seconds...
00_ping: 8 wallclock secs ( 0.69 usr + 4.77 sys = 5.46 CPU) @ 5538.64/s (n=30241)
10_set: 8 wallclock secs ( 1.07 usr + 4.01 sys = 5.08 CPU) @ 5794.09/s (n=29434)
11_set_r: 7 wallclock secs ( 0.42 usr + 4.84 sys = 5.26 CPU) @ 5051.33/s (n=26570)
20_get: 8 wallclock secs ( 0.69 usr + 4.82 sys = 5.51 CPU) @ 5080.40/s (n=27993)
21_get_r: 7 wallclock secs ( 2.21 usr + 3.09 sys = 5.30 CPU) @ 5389.06/s (n=28562)
30_incr: 7 wallclock secs ( 0.69 usr + 4.73 sys = 5.42 CPU) @ 5671.77/s (n=30741)
30_incr_r: 7 wallclock secs ( 0.85 usr + 4.31 sys = 5.16 CPU) @ 5824.42/s (n=30054)
40_lpush: 8 wallclock secs ( 0.60 usr + 4.77 sys = 5.37 CPU) @ 5832.59/s (n=31321)
50_lpop: 7 wallclock secs ( 1.24 usr + 4.17 sys = 5.41 CPU) @ 5112.75/s (n=27660)
90_h_get: 7 wallclock secs ( 0.63 usr + 4.65 sys = 5.28 CPU) @ 5716.29/s (n=30182)
90_h_set: 7 wallclock secs ( 0.65 usr + 4.74 sys = 5.39 CPU) @ 5593.14/s (n=30147)
=head2 Redis::Fast
Redis::Fast is 50% faster than Redis.pm.
Benchmark: running 00_ping, 10_set, 11_set_r, 20_get, 21_get_r, 30_incr, 30_incr_r, 40_lpush, 50_lpop, 90_h_get, 90_h_set for at least 5 CPU seconds...
00_ping: 9 wallclock secs ( 0.18 usr + 4.84 sys = 5.02 CPU) @ 7939.24/s (n=39855)
10_set: 10 wallclock secs ( 0.31 usr + 5.40 sys = 5.71 CPU) @ 7454.64/s (n=42566)
11_set_r: 9 wallclock secs ( 0.31 usr + 4.87 sys = 5.18 CPU) @ 7993.05/s (n=41404)
20_get: 10 wallclock secs ( 0.27 usr + 4.84 sys = 5.11 CPU) @ 8350.68/s (n=42672)
21_get_r: 10 wallclock secs ( 0.32 usr + 5.17 sys = 5.49 CPU) @ 8238.62/s (n=45230)
30_incr: 9 wallclock secs ( 0.23 usr + 5.27 sys = 5.50 CPU) @ 8221.82/s (n=45220)
30_incr_r: 8 wallclock secs ( 0.28 usr + 4.91 sys = 5.19 CPU) @ 8092.29/s (n=41999)
40_lpush: 9 wallclock secs ( 0.18 usr + 5.06 sys = 5.24 CPU) @ 8312.02/s (n=43555)
50_lpop: 9 wallclock secs ( 0.20 usr + 4.84 sys = 5.04 CPU) @ 8010.12/s (n=40371)
90_h_get: 9 wallclock secs ( 0.19 usr + 5.51 sys = 5.70 CPU) @ 7467.72/s (n=42566)
90_h_set: 8 wallclock secs ( 0.28 usr + 4.83 sys = 5.11 CPU) @ 7724.07/s (n=39470)o
=head1 PERFORMANCE IN PIPELINE MODE
#!/usr/bin/perl
use warnings;
use strict;
use Time::HiRes qw/time/;
use Redis;
my $count = 100000;
{
my $r = Redis->new;
my $start = time;
for(1..$count) {
$r->set('hoge', 'fuga', sub{});
}
$r->wait_all_responses;
printf "Redis.pm:\n%.2f/s\n", $count / (time - $start);
}
{
my $r = Redis::Fast->new;
my $start = time;
for(1..$count) {
$r->set('hoge', 'fuga', sub{});
}
$r->wait_all_responses;
printf "Redis::Fast:\n%.2f/s\n", $count / (time - $start);
}
Redis::Fast is 4x faster than Redis.pm in pipeline mode.
Redis.pm:
22588.95/s
Redis::Fast:
81098.01/s
=head1 AUTHOR
Ichinose Shogo E<lt>shogo82148@gmail.comE<gt>
=head1 SEE ALSO
=over 4
=item *
L<Redis.pm|https://github.com/melo/perl-redis>
=back
=head1 LICENSE
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
|