The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

XAO::DO::Indexer::Base -- base class for all indexers

SYNOPSIS

package XAO::DO::Indexer::Foo;
use strict;
use XAO::Utils;
use XAO::Objects;
use base XAO::Objects->load(objname => 'Indexer::Base');

sub analyze_object ($%) {
   my $self=shift;
   ....

DESCRIPTION

Provides indexer functionality that can (and for some methods MUST) be overriden by objects derived from it.

Methods are:

analyze_text ($@)

Splits given text strings into keywords and stores them into kw_data hash (first argument) using unique id from the second argument.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 24:

=over without closing =back