NAME
KinoSearch::Store::RAMFolder - In-memory Folder implementation.
DEPRECATED
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/
SYNOPSIS
my $folder = KinoSearch::Store::RAMFolder->new;
# or sometimes...
my $folder = KinoSearch::Store::RAMFolder->new(
path => $relative_path,
);
DESCRIPTION
RAMFolder is an entirely in-memory implementation of KinoSearch::Store::Folder, primarily used for testing and development.
CONSTRUCTORS
new( [labeled params] )
my $folder = KinoSearch::Store::RAMFolder->new(
path => $relative_path, # default: empty string
);
path - Relative path, used for subfolders.
INHERITANCE
KinoSearch::Store::RAMFolder isa KinoSearch::Store::Folder isa KinoSearch::Object::Obj.
COPYRIGHT AND LICENSE
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.