The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

ObjStore::AV::QSet - index-style interface with an array representation

SYNOPSIS

my $set = ObjStore::AV::QSet->new($near, $size);

$set->add($myobject);

$set->remove($myobject);

DESCRIPTION

Implements an API very similar to ObjStore::Index, except with an array implementation. Elements are unsorted. Add is the same as push, but <remove> scans the entire set.