NAME
KinoSearch::Analysis::CaseFolder - Normalize case, facilitating case-insensitive search.
DEPRECATED
The KinoSearch code base has been assimilated by the Apache Lucy project. The "KinoSearch" namespace has been deprecated, but development continues under our new name at our new home: http://lucy.apache.org/
SYNOPSIS
my $case_folder = KinoSearch::Analysis::CaseFolder->new;
my $polyanalyzer = KinoSearch::Analysis::PolyAnalyzer->new(
analyzers => [ $case_folder, $tokenizer, $stemmer ],
);
DESCRIPTION
CaseFolder normalizes text according to Unicode case-folding rules, so that searches will be case-insensitive.
CONSTRUCTORS
new()
my $case_folder = KinoSearch::Analysis::CaseFolder->new;
Constructor. Takes no arguments.
INHERITANCE
KinoSearch::Analysis::CaseFolder isa KinoSearch::Analysis::Analyzer isa KinoSearch::Object::Obj.
COPYRIGHT AND LICENSE
Copyright 2005-2011 Marvin Humphrey
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.