Ubuntu Manpages

Lucy::Store::FSFolder

File System implementation of Folder.

    my $folder = Lucy::Store::FSFolder->new(
        path   => '/path/to/folder',
    );

Implementation of Lucy::Store::Folder using a single file system directory and multiple files.

    my $folder = Lucy::Store::FSFolder->new(
        path   => '/path/to/folder',
    );
  • path - Location of the index. If the specified directory does not exist already, it will NOT be created, in order to prevent misconfigured read applications from spawning bogus files -- so it may be necessary to create the directory yourself.

Lucy::Store::FSFolder isa Lucy::Store::Folder isa Lucy::Object::Obj.