/[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 49 by dpavlin, Mon Mar 23 11:33:21 2009 UTC revision 50 by dpavlin, Mon Mar 23 11:40:50 2009 UTC
# Line 562  sub save { Line 562  sub save {
562          $self->_sock_send_ok( 'SAVE' );          $self->_sock_send_ok( 'SAVE' );
563  }  }
564    
565    =head2 bgsave
566    
567      $r->bgsave;
568    
569    =cut
570    
571    sub bgsave {
572            my $self = shift;
573            $self->_sock_send_ok( 'BGSAVE' );
574    }
575    
576    =head2 lastsave
577    
578      $r->lastsave;
579    
580    =cut
581    
582    sub lastsave {
583            my $self = shift;
584            $self->_sock_send( 'LASTSAVE' );
585    }
586    
587    =head2 shutdown
588    
589      $r->shutdown;
590    
591    =cut
592    
593    sub shutdown {
594            my $self = shift;
595            $self->_sock_send( 'SHUTDOWN' );
596    }
597    
598  =head1 AUTHOR  =head1 AUTHOR
599    
600  Dobrica Pavlinusic, C<< <dpavlin at rot13.org> >>  Dobrica Pavlinusic, C<< <dpavlin at rot13.org> >>

Legend:
Removed from v.49  
changed lines
  Added in v.50

  ViewVC Help
Powered by ViewVC 1.1.26