Re: SIMPLE Lucene / MySQL Indexer

2005-07-12 Thread Chris Lu
Please allow me to intraduce DBSight. It's based on Lucene, oriented for Any database search. Most of the things are done by web UI. No coding is needed to create your search. check out this demo. http://search.dbsight.com It's free to download and test. Free for developer edition, non-profit

SIMPLE Lucene / MySQL Indexer

2005-07-12 Thread Klaus Hubert
Hi, I played with several search engines to replace MySQL FULLTEXT index and hope that Lucene is the best solution for that. I am reading Mannings book on Lucene in action and it seems to be the most powerful search engine I found so far. I'm stuck at some problem and need help from you experts.

Re: Index Partitioning ( was Re: Search deadlocking under load)

2005-07-12 Thread Paul Smith
On 13/07/2005, at 1:34 AM, Chris Hostetter wrote: : Since this isn't in production yet, I'd rather be proven wrong now : rather than later! :) it sounds like what you're doing makes a lot of sense given your situation, and the nature of your data. the one thing you might not have concidered

RE: Search deadlocking under load

2005-07-12 Thread Nathan Brackett
Otis, After further testing it turns out that the 'deadlock' we're encountering is not a deadlock at all, but a result of resin hitting its maximum number of allowed threads. We bumped up the max-threads in the config and it fixed the problem for a certain amount of load, but we'd much prefer to

Re: Lucene and numerical fields search

2005-07-12 Thread Ray Tsang
It seems TooManyClauses is a potential problem for any query that expands to a series of OR'ed boolean queries (PrefixQuery, WildcardQuery, RangeQuery...). If the max was set too high, the inefficiency would make the search unsable. I kind of worked around this by creating a BitSetQuery, and exte

Re: Lucene and numerical fields search

2005-07-12 Thread Yonik Seeley
I use ConstantScoreRangeQuery for this purpose: http://issues.apache.org/bugzilla/show_bug.cgi?id=34673 -Yonik On 7/12/05, Rifflard Mickaël <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm using Lucene as a fulltext search engine since a year now and this one > works well for this. > Now, I want t

Re: How to get the un-stemed word

2005-07-12 Thread Andrew Boyd
Thats why (at least one of the reasons) I wish the token type was stored in the index. -Original Message- From: markharw00d <[EMAIL PROTECTED]> Sent: Jul 11, 2005 4:08 PM To: java-user@lucene.apache.org Subject: Re: How to get the un-stemed word >>Would that show up in the TermVectors?

Re: Index Partitioning ( was Re: Search deadlocking under load)

2005-07-12 Thread Chris Hostetter
: Since this isn't in production yet, I'd rather be proven wrong now : rather than later! :) it sounds like what you're doing makes a lot of sense given your situation, and the nature of your data. the one thing you might not have concidered yet, which doesn't have to make a big difference in yo

RE: Lucene and numerical fields search

2005-07-12 Thread Paul . Illingworth
Hi Mickaël, Take a look at the org.apache.lucene.search.DateFilter class that comes with Lucene. This does date range filtering (I am using a modified version of this class for filtering my date format). It should be relatively strightforward to modify this for filtering numeric ranges. If yo

RE: Lucene and numerical fields search

2005-07-12 Thread Rifflard Mickaël
Hi Paul, I have seen Filter feature and search how to use it to solve my problem. But users can search in indeterminate range so I don't find how to use filters in that case. Mickaël -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Envoyé : mardi 12 juillet 2

Re: Lucene and numerical fields search

2005-07-12 Thread Paul . Illingworth
I have similar requirements. To get around the "Too many clauses" problem I am creating a Filter (this takes one or two seconds to create on an index of around 25 documents) instead of using the RangeQuery. It's not ideal but it does sidestep the problem. If you are using the same range in

Lucene and numerical fields search

2005-07-12 Thread Rifflard Mickaël
Hi all, I'm using Lucene as a fulltext search engine since a year now and this one works well for this. Now, I want to add to my application search capability like : aField greater than 10 , aField between 10 and 20. For this, I used RangeQuery (aField:[10 TO 20] for exemple) and I received all