Detection of index dublicates in Lucene

2007-07-29 Thread Dmitry
We trying to find are any implementation for Lucene - detection index duclicates. Assuming we have a set of documents and a document is a bunch of words. After we created indexec for the same document we need to knwo that all ideces will be uniq for specific document. (lexical equivalency).

Re: two questions about NumberTools

2007-07-29 Thread Mohammad Norouzi
Hi I create my index files and encode all numbers using solr's NumberUtils but searching not works!!! I created a custom query parser and override the getRangeQuery and getFieldQuery but no result will return. do I have to implement a custom analyzer too? currently I am using whitespace analayzer

Re: lucene integration with PDM Windchill (Product Data Management System)

2007-07-29 Thread karl wettin
I'm not sure I understand how all the objects you talk to relate to each other, nor do I see a concrete question in your post. Is your problem that you do not know how to denormalize the object grapgs in order to represent them as Lucene documents that make sense to search in? Or are you

Re: Search terms on a single instance of field

2007-07-29 Thread Jeff French
Rossini, have you had any luck with this? I don't know if this solves your exact problem, but could you do something like this: 1. Use Analyzer.getPositionIncrementGap to create a gap (let's say 100) between your fieldA's. 2. Then query like this: fieldA:(termA termB~99) I did this