Searching with String that Represents a Signature

2014-08-14 Thread Scott Selvia
We have OCR a document with a signature, you can select the signature and copy the text representation for searching in a lucene 4.7 index. We have surrounded the search text with double quotes since it has invalid search characters without the use of the double quotes. Search Text: ":J!/z&”

Re: Exact Phrase Search returning in correct results

2014-06-11 Thread Scott Selvia
o be able to search stop words consider adding > CharArraySet.EMPTY_SET to the StandardAnalyzer's initializer. > > > > -----Original Message- > From: Scott Selvia [mailto:ssel...@gmail.com] > Sent: Wednesday, June 11, 2014 12:48 PM > To: java-user@lucene.apache

Exact Phrase Search returning in correct results

2014-06-11 Thread Scott Selvia
I’m having an issue searching for an exact phrase with Lucene 4.7. My use case loaded the Declaration of Independence into a Lucene search database. I search for “it becomes” and I get two hits; one for “it, becomes” and another for a line that just has “becomes” at the end of the line. Expec