The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Lucy::Store::FSFolder - File System implementation of Folder.

SYNOPSIS

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

DESCRIPTION

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

CONSTRUCTORS

new

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

Create a new 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.

INHERITANCE

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