NAME
KinoSearch::Store::RAMFolder - In-memory Folder implementation.
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-2010 Marvin Humphrey
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.