Re: Auto Slop

2007-07-06 Thread Grant Ingersoll
FYI: Solr has a nice Analysis debugging tool that lets you see the results of running an analysis as it passes through each phase of the Analyzer. Some enterprising soul might want to make a contribution along these lines that could be added to the contrib. :-) Cheers, Grant On Jul 3, 2

RE: Auto Slop

2007-07-02 Thread Ard Schrijvers
> I just ran into an interesting problem today, and wanted to know if it > was my understanding or Lucene that was out of whack -- right now I'm > leaning toward a fault between the chair and the keyboard. > > I attempted to do a simple phrase query using the StandardAnalyzer: > "United States"

Re: Auto Slop

2007-07-02 Thread Mark Miller
Examine your indexes and analyzers. The default slop is 0, which means allow 0 terms between the terms in the phrase. That would be an exact match. A slop of 1 is not the default and would allow a term movement of one position to match the phrase. - Mark Walt Stoneburner wrote: I just ran in