Displaying 1 result from an estimated 1 matches for "new_stem".
Did you mean:
new_item
2006 Mar 29
1
Using boolean terms in PHP bindings
...index
abstract: field=abstract
category: field=category boolean=XC
- - - - - -
php
- - - - - -
//load the module
dl ("xapian.so");
//report all errors
error_reporting (E_ALL);
$db = new_database ("/www/servers/util/omega/test/default");
$stemmer = new_stem ("english");
//create a query parser
$query_parser = new_queryparser();
//set the stemmer and turn on the stemming strategy
queryparser_set_stemmer ($query_parser, $stemmer);
queryparser_set_stemming_strategy ($query_parser, 1);
//set the database
queryparse...