-
-
27 Aug 2008 21:16:08 UTC
- Distribution: KinoSearch
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (5)
- Testers (106 / 44 / 13)
- Kwalitee
Bus factor: 0- License: perl_5
- Activity
24 month- Tools
- Download (226.15KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 1 contributors- Marvin Humphrey <marvin at rectangular dot com>
- Dependencies
- Compress::Zlib
- Lingua::Stem::Snowball
- Lingua::StopWords
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
KinoSearch::Store::RAMInvIndex - in-memory InvIndex
SYNOPSIS
my $invindex = KinoSearch::Store::RAMInvIndex->new( path => '/path/to/invindex', ); # or... my $invindex = KinoSearch::Store::RAMInvIndex->new;
DESCRIPTION
RAMInvIndex is an entirely in-memory implementation of KinoSearch::Store::InvIndex. It serves two main purposes.
First, it's possible to load an existing FSInvIndex into memory, which can improve search-speed -- if you have that kind of RAM to spare. Needless to say, any FSInvIndex you try to load this way should be appropriately modest in size.
Second, RAMInvIndex is handy for testing and development.
CONSTRUCTOR
new
Create a RAMInvIndex object.
new
takes one optional parameter,path
. Ifpath
is supplied, KinoSearch will try to read an FSInvIndex at that location into memory.COPYRIGHT
Copyright 2005-2007 Marvin Humphrey
LICENSE, DISCLAIMER, BUGS, etc.
See KinoSearch version 0.163.
Module Install Instructions
To install KinoSearch, copy and paste the appropriate command in to your terminal.
cpanm KinoSearch
perl -MCPAN -e shell install KinoSearch
For more information on module installation, please visit the detailed CPAN module installation guide.