Displaying 2 results from an estimated 2 matches for "spellings_begin".
2009 Mar 02
0
Xapian, PHP bindings and
...uot;;
// Find the top 10 results for the query.
$enquire->set_query($query);
$matches = $enquire->get_mset(0, 100);
//correction spelling
echo '<hr />';
$i = $database->spellings_begin();
while( ! $i->equals( $database->spellings_end())) {
var_dump( $i );
}
echo '<hr />';
// Display the results.
print $matches->get_matches_e...
2007 Nov 08
1
QueryParser : some remarks
Hi to all,
First, I would like to say a big thank you for the work which was done
on my 'wish bug' to allow mapping one field to multiple prefixes
(http://www.xapian.org/cgi-bin/bugzilla/show_bug.cgi?id=93).
That's great!
I have upgraded to 1.0.4 and I am revisiting my code, replacing the php
query parser I wrote with Xapian's one.
Everything works well, but I have some