Search::GIN - Generalized Inverted Indexing


Search-GIN documentation Contained in the Search-GIN distribution.

Index


Code Index:

NAME

Top

Search::GIN - Generalized Inverted Indexing

VERSION

Top

version 0.08

DESCRIPTION

Top

Inverted Indexing is an indexing method that maps from content to location in storage.

Generalized Inverted Indexing (GIN, for short) is an inverted indexing method in which the index is unaware of what data exactly is it indexing.

Search::GIN is primarily used by KiokuDB for custom indexing.

SEE ALSO

Top

* pgsql-hackers msg #00960|http://archives.postgresql.org/pgsql-hackers/ 2006-04/msg00960.php
* Inverted_index on Wikipedia|http://en.wikipedia.org/wiki/ Inverted_index

AUTHOR

Top

Yuval Kogman <nothingmuch@cpan.org>

COPYRIGHT AND LICENSE

Top


Search-GIN documentation Contained in the Search-GIN distribution.

use strict;
use warnings;
package Search::GIN;
BEGIN {
  $Search::GIN::VERSION = '0.08';
}
# ABSTRACT: Generalized Inverted Indexing

1;




__END__