-
-
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::InvIndex - inverted index
SYNOPSIS
# abstract base class
DESCRIPTION
An InvIndex is an abstract representation of an inverted index, KinoSearch's core data structure. The archetypal implementation of an invindex, FSInvIndex, is a single directory holding a collection of files. However, to allow alternative implementations such as RAMInvIndex, i/o and file manipulation are abstracted out rather than executed directly by KinoSearch's classes.
A "file" within an invindex might be a real file -- or it might be a ram file, or eventually a database record, etc. Similarly,
$invindex->delete_file($filename)
might delete a file from the file system, or a key-value pair from a hash, or something else.SEE ALSO
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.