
KinoSearch::Store::RAMFolder - In-memory Folder implementation.

The KinoSearch code base has been assimilated by the Apache Lucy project. The "KinoSearch" namespace has been deprecated, but development continues under our new name at our new home: http://lucy.apache.org/

my $folder = KinoSearch::Store::RAMFolder->new;
# or sometimes...
my $folder = KinoSearch::Store::RAMFolder->new(
path => $relative_path,
);

RAMFolder is an entirely in-memory implementation of KinoSearch::Store::Folder, primarily used for testing and development.

my $folder = KinoSearch::Store::RAMFolder->new(
path => $relative_path, # default: empty string
);

KinoSearch::Store::RAMFolder isa KinoSearch::Store::Folder isa KinoSearch::Object::Obj.

Copyright 2005-2011 Marvin Humphrey
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.