Posted by jvandervort on February 27, 2007 at 7:03pm
For those keeping up-to-date. I'll be loading it next week.
They are claiming: Great performance improvement for Zend_Search_Lucene.
For those keeping up-to-date. I'll be loading it next week.
They are claiming: Great performance improvement for Zend_Search_Lucene.
Comments
They changed something in the query analyzer
Some of my queries are no longer returning hits.
I'll have to check deeper.
-John
-John
Found the answer
The new query analyzer added in 0.8.0 tokenizes all fields whether they are keyword fields or not.
If you use keyword fields you need to parse the incoming query and use the api directly to specify
a keyword query.
something like this:
It does seem to run faster, but queries with excessively large hits still use up a ton of php memory.
-John
-John