Ignore:
Timestamp:
2005-07-26T10:15:08+12:00 (19 years ago)
Author:
davidb
Message:

Introduction of is_incremental() function in base class (not incremental
by default). Over-ridden by inherited classes if incremental building
possible.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/lucenebuildproc.pm

    r9919 r10304  
    4545    return bless $self, $class;
    4646}
     47
     48
     49sub is_incremental
     50{
     51    my $self = shift (@_);
     52
     53    # Unlike MG and MGPP, Lucene supports incremental building
     54    return 1;
     55}
     56
    4757
    4858sub preprocess_text {
Note: See TracChangeset for help on using the changeset viewer.