Re: Speed of fuzzy searches

2009-04-03 Thread Matt Schraeder
After doing some research I broke down and just updated my Zend Framework. I just installed it not long ago so I didn't think much of it, but then I realized I'm running version 1.6.1 and that Zend is currently on 1.7.8. Upon upgrading the complex fuzzy search that was taking 30 seconds now

Re: Speed of fuzzy searches

2009-04-03 Thread Erik Hatcher
On Apr 3, 2009, at 10:58 AM, Grant Ingersoll wrote: Now, we have an implementation of JaroWinkler in the spell checker (in fact, we have pluggable distance measures there), perhaps it makes sense to think about how FuzzyQuery could leverage this pluggability? My suggestion is to make it

Speed of fuzzy searches

2009-04-02 Thread Matt Schraeder
search seems to take vastly longer time, 6 seconds for a single term such as cow~ and 24 seconds for fuzzy searches of multiple terms. Is there anything I can do to speed up fuzzy searches or are they by default just simply slow? My index is only 6.1M, with ~18000 documents. Each document has 5

Re: Speed of fuzzy searches

2009-04-02 Thread Erick Erickson
to really slow down. A fuzzy search seems to take vastly longer time, 6 seconds for a single term such as cow~ and 24 seconds for fuzzy searches of multiple terms. Is there anything I can do to speed up fuzzy searches or are they by default just simply slow? My index is only 6.1M

Re: Speed of fuzzy searches

2009-04-02 Thread Mark Miller
slow down. A fuzzy search seems to take vastly longer time, 6 seconds for a single term such as cow~ and 24 seconds for fuzzy searches of multiple terms. Is there anything I can do to speed up fuzzy searches or are they by default just simply slow? My index is only 6.1M, with ~18000 documents

Re: Speed of fuzzy searches

2009-04-02 Thread mark harwood
@lucene.apache.org Sent: Thursday, 2 April, 2009 17:16:57 Subject: Speed of fuzzy searches I've got a simple Lucene index and search built for testing purposes. So far everything seems great. Most searches take 0.02 seconds or less. Searches with 4-5 terms take 0.25 seconds or less. However, once I began

Re: Speed of fuzzy searches

2009-04-02 Thread Matt Schraeder
erickerick...@gmail.com 4/2/2009 10:24:42 AM This seems really odd, especially with an index that size. The first question is usually Do you open an IndexReader for each query? I'm using the Zend_Search_Lucene implementation so I'm really not sure how it handles the IndexReader. At the top