/[Redis.pre-github]/lib/Redis.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /lib/Redis.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 18 by dpavlin, Sun Mar 22 09:44:30 2009 UTC revision 38 by dpavlin, Sun Mar 22 18:17:05 2009 UTC
# Line 9  use Carp qw/confess/; Line 9  use Carp qw/confess/;
9    
10  =head1 NAME  =head1 NAME
11    
12  Redis - The great new Redis!  Redis - perl binding for Redis database
13    
14  =cut  =cut
15    
# Line 20  our $VERSION = '0.01'; Line 20  our $VERSION = '0.01';
20    
21  Pure perl bindings for L<http://code.google.com/p/redis/>  Pure perl bindings for L<http://code.google.com/p/redis/>
22    
23    This version support git version of Redis available at
24    L<git://github.com/antirez/redis>
25    
26      use Redis;      use Redis;
27    
28      my $r = Redis->new();      my $r = Redis->new();
29    
   
   
   
30  =head1 FUNCTIONS  =head1 FUNCTIONS
31    
32  =head2 new  =head2 new
33    
34  =cut  =cut
35    
36    our $debug = $ENV{REDIS} || 0;
37    
38  our $sock;  our $sock;
39  my $server = '127.0.0.1:6379';  my $server = '127.0.0.1:6379';
40    
# Line 53  sub new { Line 55  sub new {
55    
56  sub _sock_result {  sub _sock_result {
57          my $result = <$sock>;          my $result = <$sock>;
58          warn "# result: ",dump( $result );          warn "## result: ",dump( $result ) if $debug;
59          $result =~ s{\r\n$}{} || warn "can't find cr/lf";          $result =~ s{\r\n$}{} || warn "can't find cr/lf";
60          return $result;          return $result;
61  }  }
62    
63  sub _sock_result_bulk {  sub _sock_read_bulk {
64          my $len = <$sock>;          my $len = <$sock>;
65          warn "# len: ",dump($len);          warn "## bulk len: ",dump($len) if $debug;
66          return undef if $len eq "nil\r\n";          return undef if $len eq "nil\r\n";
67          my $v;          my $v;
68          read($sock, $v, $len) || die $!;          if ( $len > 0 ) {
69          warn "# v: ",dump($v);                  read($sock, $v, $len) || die $!;
70                    warn "## bulk v: ",dump($v) if $debug;
71            }
72          my $crlf;          my $crlf;
73          read($sock, $crlf, 2); # skip cr/lf          read($sock, $crlf, 2); # skip cr/lf
74          return $v;          return $v;
75  }  }
76    
77  sub _sock_ok {  sub _sock_result_bulk {
78            my $self = shift;
79            warn "## _sock_result_bulk ",dump( @_ ) if $debug;
80            print $sock join(' ',@_) . "\r\n";
81            _sock_read_bulk();
82    }
83    
84    sub _sock_result_bulk_list {
85            my $self = shift;
86            warn "## _sock_result_bulk_list ",dump( @_ ) if $debug;
87    
88            my $size = $self->_sock_send( @_ );
89            confess $size unless $size > 0;
90            $size--;
91    
92            my @list = ( 0 .. $size );
93            foreach ( 0 .. $size ) {
94                    $list[ $_ ] = _sock_read_bulk();
95            }
96    
97            warn "## list = ", dump( @list ) if $debug;
98            return @list;
99    }
100    
101    sub __sock_ok {
102          my $ok = <$sock>;          my $ok = <$sock>;
103            return undef if $ok eq "nil\r\n";
104          confess dump($ok) unless $ok eq "+OK\r\n";          confess dump($ok) unless $ok eq "+OK\r\n";
105  }  }
106    
107    sub _sock_send {
108            my $self = shift;
109            warn "## _sock_send ",dump( @_ ) if $debug;
110            print $sock join(' ',@_) . "\r\n";
111            _sock_result();
112    }
113    
114    sub _sock_send_ok {
115            my $self = shift;
116            warn "## _sock_send_ok ",dump( @_ ) if $debug;
117            print $sock join(' ',@_) . "\r\n";
118            __sock_ok();
119    }
120    
121    sub __sock_send_bulk_raw {
122            my $self = shift;
123            warn "## _sock_send_bulk ",dump( @_ ) if $debug;
124            my $value = pop;
125            $value = '' unless defined $value; # FIXME errr? nil?
126            print $sock join(' ',@_) . ' ' . length($value) . "\r\n$value\r\n"
127    }
128    
129  sub _sock_send_bulk {  sub _sock_send_bulk {
130          my ( $self, $command, $key, $value ) = @_;          __sock_send_bulk_raw( @_ );
131          print $sock "$command $key " . length($value) . "\r\n$value\r\n";          __sock_ok();
         _sock_ok();  
132  }  }
133    
134    sub _sock_send_bulk_number {
135            __sock_send_bulk_raw( @_ );
136            my $v = _sock_result();
137            confess $v unless $v =~ m{^\-?\d+$};
138            return $v;
139    }
140    
141  =head1 Connection Handling  =head1 Connection Handling
142    
# Line 128  sub set { Line 184  sub set {
184  =cut  =cut
185    
186  sub get {  sub get {
187          my ( $self, $k ) = @_;          my $self = shift;
188          print $sock "GET $k\r\n";          $self->_sock_result_bulk('GET', @_);
         _sock_result_bulk();  
189  }  }
190    
191  =head2 incr  =head2 incr
# Line 143  sub get { Line 198  sub get {
198                    
199    
200  sub incr {  sub incr {
201          my ( $self, $key, $value ) = @_;          my $self = shift;
202          if ( defined $value ) {          $self->_sock_send( 'INCR' . ( $#_ ? 'BY' : '' ), @_ );
                 print $sock "INCRBY $key $value\r\n";  
         } else {  
                 print $sock "INCR $key\r\n";  
         }  
         _sock_result();  
203  }  }
204    
205  =head2 decr  =head2 decr
# Line 160  sub incr { Line 210  sub incr {
210  =cut  =cut
211    
212  sub decr {  sub decr {
213          my ( $self, $key, $value ) = @_;          my $self = shift;
214          if ( defined $value ) {          $self->_sock_send( 'DECR' . ( $#_ ? 'BY' : '' ), @_ );
                 print $sock "DECRBY $key $value\r\n";  
         } else {  
                 print $sock "DECR $key\r\n";  
         }  
         _sock_result();  
215  }  }
216    
217  =head2 exists  =head2 exists
# Line 177  sub decr { Line 222  sub decr {
222    
223  sub exists {  sub exists {
224          my ( $self, $key ) = @_;          my ( $self, $key ) = @_;
225          print $sock "EXISTS $key\r\n";          $self->_sock_send( 'EXISTS', $key );
         _sock_result();  
226  }  }
227    
228  =head2 del  =head2 del
# Line 189  sub exists { Line 233  sub exists {
233    
234  sub del {  sub del {
235          my ( $self, $key ) = @_;          my ( $self, $key ) = @_;
236          print $sock "DEL $key\r\n";          $self->_sock_send( 'DEL', $key );
         _sock_result();  
237  }  }
238    
239  =head2 type  =head2 type
# Line 201  sub del { Line 244  sub del {
244    
245  sub type {  sub type {
246          my ( $self, $key ) = @_;          my ( $self, $key ) = @_;
247          print $sock "TYPE $key\r\n";          $self->_sock_send( 'TYPE', $key );
         _sock_result();  
248  }  }
249    
250  =head1 Commands operating on the key space  =head1 Commands operating on the key space
# Line 215  sub type { Line 257  sub type {
257    
258  sub keys {  sub keys {
259          my ( $self, $glob ) = @_;          my ( $self, $glob ) = @_;
260          print $sock "KEYS $glob\r\n";          return split(/\s/, $self->_sock_result_bulk( 'KEYS', $glob ));
         return split(/\s/, _sock_result_bulk());  
261  }  }
262    
263  =head2 randomkey  =head2 randomkey
# Line 227  sub keys { Line 268  sub keys {
268    
269  sub randomkey {  sub randomkey {
270          my ( $self ) = @_;          my ( $self ) = @_;
271          print $sock "RANDOMKEY\r\n";          $self->_sock_send( 'RANDOMKEY' );
         _sock_result();  
272  }  }
273    
274  =head2 rename  =head2 rename
# Line 239  sub randomkey { Line 279  sub randomkey {
279    
280  sub rename {  sub rename {
281          my ( $self, $old, $new, $nx ) = @_;          my ( $self, $old, $new, $nx ) = @_;
282          print $sock "RENAME" . ( $nx ? 'NX' : '' ) . " $old $new\r\n";          $self->_sock_send_ok( 'RENAME' . ( $nx ? 'NX' : '' ), $old, $new );
         _sock_ok();  
283  }  }
284    
285  =head2 dbsize  =head2 dbsize
# Line 251  sub rename { Line 290  sub rename {
290    
291  sub dbsize {  sub dbsize {
292          my ( $self ) = @_;          my ( $self ) = @_;
293          print $sock "DBSIZE\r\n";          $self->_sock_send('DBSIZE');
         _sock_result();  
294  }  }
295    
296  =head1 Commands operating on lists  =head1 Commands operating on lists
297    
298    See also L<Redis::List> for tie interface.
299    
300  =head2 rpush  =head2 rpush
301    
302    $r->rpush( $key, $value );    $r->rpush( $key, $value );
# Line 268  sub rpush { Line 308  sub rpush {
308          $self->_sock_send_bulk('RPUSH', $key, $value);          $self->_sock_send_bulk('RPUSH', $key, $value);
309  }  }
310    
311    =head2 lpush
312    
313      $r->lpush( $key, $value );
314    
315    =cut
316    
317    sub lpush {
318            my ( $self, $key, $value ) = @_;
319            $self->_sock_send_bulk('LPUSH', $key, $value);
320    }
321    
322    =head2 llen
323    
324      $r->llen( $key );
325    
326    =cut
327    
328    sub llen {
329            my ( $self, $key ) = @_;
330            $self->_sock_send( 'LLEN', $key );
331    }
332    
333    =head2 lrange
334    
335      my @list = $r->lrange( $key, $start, $end );
336    
337    =cut
338    
339    sub lrange {
340            my ( $self, $key, $start, $end ) = @_;
341            $self->_sock_result_bulk_list('LRANGE', $key, $start, $end);
342    }
343    
344    =head2 ltrim
345    
346      my $ok = $r->ltrim( $key, $start, $end );
347    
348    =cut
349    
350    sub ltrim {
351            my ( $self, $key, $start, $end ) = @_;
352            $self->_sock_send_ok( 'LTRIM', $key, $start, $end );
353    }
354    
355    =head2 lindex
356    
357      $r->lindex( $key, $index );
358    
359    =cut
360    
361    sub lindex {
362            my ( $self, $key, $index ) = @_;
363            $self->_sock_result_bulk( 'LINDEX', $key, $index );
364    }
365    
366    =head2 lset
367    
368      $r->lset( $key, $index, $value );
369    
370    =cut
371    
372    sub lset {
373            my ( $self, $key, $index, $value ) = @_;
374            $self->_sock_send_bulk( 'LSET', $key, $index, $value );
375    }
376    
377    =head2 lrem
378    
379      my $modified_count = $r->lrem( $key, $count, $value );
380    
381    =cut
382    
383    sub lrem {
384            my ( $self, $key, $count, $value ) = @_;
385            $self->_sock_send_bulk_number( 'LREM', $key, $count, $value );
386    }
387    
388    =head2 lpop
389    
390      my $value = $r->lpop( $key );
391    
392    =cut
393    
394    sub lpop {
395            my ( $self, $key ) = @_;
396            $self->_sock_result_bulk( 'LPOP', $key );
397    }
398    
399    =head2 rpop
400    
401      my $value = $r->rpop( $key );
402    
403    =cut
404    
405    sub rpop {
406            my ( $self, $key ) = @_;
407            $self->_sock_result_bulk( 'RPOP', $key );
408    }
409    
410    =head1 Commands operating on sets
411    
412    =head2 sadd
413    
414      $r->sadd( $key, $member );
415    
416    =cut
417    
418    sub sadd {
419            my ( $self, $key, $member ) = @_;
420            $self->_sock_send_bulk_number( 'SADD', $key, $member );
421    }
422    
423    =head2 srem
424    
425      $r->srem( $key, $member );
426    
427    =cut
428    
429    sub srem {
430            my ( $self, $key, $member ) = @_;
431            $self->_sock_send_bulk_number( 'SREM', $key, $member );
432    }
433    
434    =head2 scard
435    
436      my $elements = $r->scard( $key );
437    
438    =cut
439    
440    sub scard {
441            my ( $self, $key ) = @_;
442            $self->_sock_send( 'SCARD', $key );
443    }
444    
445    =head2 sismember
446    
447      $r->sismember( $key, $member );
448    
449    =cut
450    
451    sub sismember {
452            my ( $self, $key, $member ) = @_;
453            $self->_sock_send_bulk_number( 'SISMEMBER', $key, $member );
454    }
455    
456    =head2 sinter
457    
458      $r->sinter( $key1, $key2, ... );
459    
460    =cut
461    
462    sub sinter {
463            my $self = shift;
464            $self->_sock_result_bulk_list( 'SINTER', @_ );
465    }
466    
467    =head2 sinterstore
468    
469      my $ok = $r->sinterstore( $dstkey, $key1, $key2, ... );
470    
471    =cut
472    
473    sub sinterstore {
474            my $self = shift;
475            $self->_sock_send_ok( 'SINTERSTORE', @_ );
476    }
477    
478    =head1 Multiple databases handling commands
479    
480    =head2 select
481    
482      $r->select( 1 );
483    
484    =cut
485    
486    sub select {
487            my ($self,$index) = @_;
488            $self->_sock_send_ok( 'SELECT', $index );
489    }
490    
491  =head1 AUTHOR  =head1 AUTHOR
492    
493  Dobrica Pavlinusic, C<< <dpavlin at rot13.org> >>  Dobrica Pavlinusic, C<< <dpavlin at rot13.org> >>

Legend:
Removed from v.18  
changed lines
  Added in v.38

  ViewVC Help
Powered by ViewVC 1.1.26