RE: Searching a group of associated multi-value fileds

2011-04-07 Thread Sailesh
Thanks for the repose. But I have free more queries related your solution. In that case we need to perform two search operations, one for invoice id and other for invoice details. But if there is a scenario where we have to perform search on invoice and item fields at a time then how can we do it?

Re: [ANNOUNCE] Apache PyLucene 3.1.0

2011-04-07 Thread darren
Congrats Andi. A truly awesome project. On Thu, 7 Apr 2011 20:02:22 -0700 (PDT), Andi Vajda wrote: > I am pleased to announce the availability of Apache PyLucene 3.1.0. > > Apache PyLucene, a subproject of Apache Lucene, is a Python extension for > accessing Apache Lucene Core. Its goal is to a

[ANNOUNCE] Apache PyLucene 3.1.0

2011-04-07 Thread Andi Vajda
I am pleased to announce the availability of Apache PyLucene 3.1.0. Apache PyLucene, a subproject of Apache Lucene, is a Python extension for accessing Apache Lucene Core. Its goal is to allow you to use Lucene's text indexing and searching capabilities from Python. It is API compatible with the

Synonym Search

2011-04-07 Thread prosens
I have synonym search configured in my solrschema. Now in certain cases I don't want to do a search for the synonyms. What should I put in the query for this? -- View this message in context: http://lucene.472066.n3.nabble.com/Synonym-Search-tp2791509p2791509.html Sent from the Lucene - General m

Re: [VOTE] Release PyLucene 3.1.0

2011-04-07 Thread Andi Vajda
On Sat, 2 Apr 2011, Andi Vajda wrote: The PyLucene 3.1.0-1 release closely tracking the recent release of Lucene Java 3.1.0 is ready. A release candidate is available from: http://people.apache.org/~vajda/staging_area/ A list of changes in this release can be seen at: http://svn.apache.org/

RE: Searching a group of associated multi-value fileds

2011-04-07 Thread Granroth, Neal V.
One solution is to change the structure of your index. Index each of your items as individual Lucene documents. Include with the document an additional field containing an invoice-id. This will allow you to use Lucene's search without difficulty, while also retaining the association between it

Searching a group of associated multi-value fileds

2011-04-07 Thread Sailesh
Hi, I have scenario where i have so search multiple multi-valued fields, for example I have an invoice that contians may items and each item has many attributes like item id : 1, item_name : my item name1 , unit_price : 10 item id : 2, item_name : your item name2 , unit_price : 11 item id : 3, i