Skip to content

Commit

Permalink
remove special case for keys
Browse files Browse the repository at this point in the history
  • Loading branch information
dpavlin committed Apr 13, 2010
1 parent 748f121 commit d8e6bf7
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/Redis.pm
Expand Up @@ -100,10 +100,6 @@ sub AUTOLOAD {
$hash->{$n} = $v;
}
return $hash;
} elsif ( $command eq 'keys' ) {
my $keys = $self->__read_bulk($result);
return split(/\s/, $keys) if $keys;
return;
}

if ( $type eq '-' ) {
Expand Down

0 comments on commit d8e6bf7

Please sign in to comment.