Re: Lucene memory usage

2009-06-11 Thread Jaison Sunny
how to run lucene on eclipse

Re: Using lucene in a clustered app server

2009-06-11 Thread Tarandeep Singh
Hi Amin, I am also working on similar implementation. But right now I am working on building Lucene Index in parallel using Hadoop. How are you building your Lucene index (or indexes) ? Have you tried Hadoop? If yes, we can share some design issues. Also, for serving Lucene indexes over cluster,

Re: Migrating from Hit/Hits to TopDocs/TopDocCollector

2009-06-11 Thread Paul J. Lucas
On Jun 11, 2009, at 1:49 AM, Ian Lea wrote: This thread seems to be veering well away from your original straightforward question on how to convert your straighforward code. So what? It's about Lucene and hence on-topic. Why do you care? If you want or need these advanced solutions, fine,

Re: Lucene 2.9 Release

2009-06-11 Thread Mark Miller
Okay, its only been a short time and we have already whittled the list down from 56 to 42. I think we have covered most of the easy calls. If you know an issue your involved in won't likely be done soon, please help us out and take off the version or push it to 3.1. Next time I go through, I'm

Re: How to support stemming and case folding for english content mixed with non-english content?

2009-06-11 Thread KK
Thank you very much Yonik. I downloaded the latest Solr build, pulled the WordDelimiterFilter and used it with the same option as used by Solr default and it worked like a charm. Thanks to Robert also. Thanks, KK On Tue, Jun 9, 2009 at 7:01 PM, Yonik Seeley wrote: > I just cut'n'pasted your wor

Re: Migrating from Hit/Hits to TopDocs/TopDocCollector

2009-06-11 Thread Ian Lea
This thread seems to be veering well away from your original straightforward question on how to convert your straighforward code. If you want or need these advanced solutions, fine, but if your existing code was fast enough the modified versions suggested earlier are probably fast enough too. -- I

Re: Phrase search

2009-06-11 Thread Savvas-Andreas Moysidis
Hello, You could use a PhraseQuery with the terms "cool" and "gaming" and "computer" and set the slop factor you reckon is right. Then could assign a boost to this query only, which will make it bubble up the list. I don't think you can get away without specifying a slop factor though(like in the

Re: Using lucene in a clustered app server

2009-06-11 Thread Amin Mohammed-Coleman
Hi we are thinking of implementing a solution like this. All nodes on the cluster has a local index from which searches are performed. Once an update on the index needs to happen the work is sent to a queue where there is a master who is responsible for updating the central index. The master is

Re: How to support stemming and case folding for english content mixed with non-english content?

2009-06-11 Thread KK
Note: I request Solr users to go through this mail and let me thier ideas. Thanks Yonik, you rightly pointed it out. That clearly says that the way I'm trying to mimic the default behaviour of Solr indexing/searching in Lucene is wrong, right?. I downloaded the latest version of solr nightly on m