del, small refacture into sock_result
[perl-Redis.git] / lib / Redis.pm
index 4c46a66..c5597df 100644 (file)
@@ -5,6 +5,7 @@ use strict;
 
 use IO::Socket::INET;
 use Data::Dump qw/dump/;
+use Carp qw/confess/;
 
 =head1 NAME
 
@@ -66,7 +67,7 @@ sub quit {
 
 =head2 ping
 
-       $r->ping || die "no server?";
+  $r->ping || die "no server?";
 
 =cut
 
@@ -76,6 +77,107 @@ sub ping {
        die "ping failed, got ", dump($pong) unless $pong eq "+PONG\r\n";
 }
 
+=head1 Commands operating on string values
+
+=head2 set
+
+  $r->set( foo => 'bar', $new );
+
+=cut
+
+sub set {
+       my ( $self, $k, $v, $new ) = @_;
+       print $sock ( $new ? "SETNX" : "SET" ) . " $k " . length($v) . "\r\n$v\r\n";
+       my $ok = <$sock>;
+       confess dump($ok) unless $ok eq "+OK\r\n";
+}
+
+=head2 get
+
+  my $value = $r->get( 'foo' );
+
+=cut
+
+sub get {
+       my ( $self, $k ) = @_;
+       print $sock "GET $k\r\n";
+       my $len = <$sock>;
+#      warn "# len: ",dump($len);
+       return undef if $len eq "nil\r\n";
+       my $v;
+       read($sock, $v, $len) || die $!;
+#      warn "# v: ",dump($v);
+       my $crlf;
+       read($sock, $crlf, 2); # skip cr/lf
+       return $v;
+}
+
+=head2 incr
+
+  $r->incr('counter');
+  $r->incr('tripplets', 3);
+
+=cut
+
+sub sock_result {
+       my $result = <$sock>;
+       warn "# result: ",dump( $result );
+       $result =~ s{\r\n$}{} || warn "can't find cr/lf";
+       return $result;
+}
+       
+
+sub incr {
+       my ( $self, $key, $value ) = @_;
+       if ( defined $value ) {
+               print $sock "INCRBY $key $value\r\n";
+       } else {
+               print $sock "INCR $key\r\n";
+       }
+       sock_result();
+}
+
+=head2 decr
+
+  $r->decr('counter');
+  $r->decr('tripplets', 3);
+
+=cut
+
+sub decr {
+       my ( $self, $key, $value ) = @_;
+       if ( defined $value ) {
+               print $sock "DECRBY $key $value\r\n";
+       } else {
+               print $sock "DECR $key\r\n";
+       }
+       sock_result();
+}
+
+=head2 exists
+
+  $r->exists( 'key' ) && print "got key!";
+
+=cut
+
+sub exists {
+       my ( $self, $key ) = @_;
+       print $sock "EXISTS $key\r\n";
+       sock_result();
+}
+
+=head2 del
+
+  $r->del( 'key' ) || warn "key doesn't exist";
+
+=cut
+
+sub del {
+       my ( $self, $key ) = @_;
+       print $sock "DEL $key\r\n";
+       sock_result();
+}
+
 =head1 AUTHOR
 
 Dobrica Pavlinusic, C<< <dpavlin at rot13.org> >>