--- lib/Redis.pm 2009/03/22 17:31:40 33 +++ lib/Redis.pm 2009/03/22 17:53:57 35 @@ -293,6 +293,8 @@ =head1 Commands operating on lists +See also L for tie interface. + =head2 rpush $r->rpush( $key, $value ); @@ -460,6 +462,17 @@ $self->_sock_result_bulk_list( 'SINTER', @_ ); } +=head2 sinterstore + + my $ok = $r->sinterstore( $dstkey, $key1, $key2, ... ); + +=cut + +sub sinterstore { + my $self = shift; + $self->_sock_send_ok( 'SINTERSTORE', @_ ); +} + =head1 AUTHOR Dobrica Pavlinusic, C<< >>