Help for this page

Select Code to Download


  1. or download this
    sub create_index {
       my ($dbh, $index_name, $frontend, $backend, $scoring) = @_;
    ...
    . . .
    
    my $index = create_index($dbh, 'search_index', 'string', 'phrase', 1);
    
  2. or download this
    sub create_index {
       my %args = @_;
    ...
                             backend => 'phrase'
                             scoring => 1
                             );