Re: Question concerning speed of Lucene.....

2004-08-27 Thread Paul Elschot
Oliver, On Friday 27 August 2004 22:20, you wrote: > Hi, > > I guess this one of the most often asked question on this mailing list, but > hopefully my question is more specific, so that I can get some input from > you. > > My project is to implement an agency system for newspapers. So I have to >

Question concerning speed of Lucene.....

2004-08-27 Thread Oliver Andrich
Hi, I guess this one of the most often asked question on this mailing list, but hopefully my question is more specific, so that I can get some input from you. My project is to implement an agency system for newspapers. So I have to handle about 30 days of text and IPTC data. The later is taken

Re: Using 2nd Index to constraing Search

2004-08-27 Thread Paul Elschot
On Friday 27 August 2004 20:10, Mike Upshon wrote: > Hi > > Just starting to evaluate Lucene and hope somone can answer this > question. > > I am looking at using Lucene to index a very large databse. There is a > documents table and a few other tables that define what users can view > what documen

RE: complex searche (newbie)

2004-08-27 Thread Otis Gospodnetic
This should work: http://jakarta.apache.org/lucene/docs/api/org/apache/lucene/search/IndexSearcher.html#search(org.apache.lucene.search.Query,%20org.apache.lucene.search.Filter,%20int,%20org.apache.lucene.search.Sort) Otis --- Wermus Fernando <[EMAIL PROTECTED]> wrote: > Thanks :) > > It

Using 2nd Index to constraing Search

2004-08-27 Thread Mike Upshon
Hi Just starting to evaluate Lucene and hope somone can answer this question. I am looking at using Lucene to index a very large databse. There is a documents table and a few other tables that define what users can view what documents. My question is, is it posible to have an index of the full te

RE: complex searche (newbie)

2004-08-27 Thread Wermus Fernando
Thanks :) It Works :) . One more question. I need to order the hits by a field in contact called lastname. What do I have to add to the query? -Mensaje original- De: Bernhard Messer [mailto:[EMAIL PROTECTED] Enviado el: Jueves, 26 de Agosto de 2004 02:17 p.m. Para: Lucene User

RE: Range query problem

2004-08-27 Thread Stephane James Vaucher
A description on how to search numerical fields is available on the wiki: http://wiki.apache.org/jakarta-lucene/SearchNumericalFields sv On Thu, 26 Aug 2004, Alex Kiselevski wrote: > > Thanks, I'll try it > > -Original Message- > From: Daniel Naber [mailto:[EMAIL PROTECTED] > Sent: Thur

Re: speeding up queries (MySQL faster)

2004-08-27 Thread Yonik Seeley
FYI, this optimization resulted in a fantastic performance boost! I went from 133 queries/sec to 990 queries per sec! I'm now more limited by socket overhead, as I get 1700 queries/sec when I stick the clients right in the same process as the server. Oddly enough, the performance increased, but

Re: Content from multiple folders in single index

2004-08-27 Thread Erik Hatcher
You should consider using the Ant task in the Sandbox (contributions/ant directory). You'll need to write a custom document handler implementation to handle PDF's and any other types you like. The built-in handler does text and HTML files, but is pluggable. The task uses Ant's filesets to determ

Re: weird lock behavior

2004-08-27 Thread Otis Gospodnetic
Yes, creating a unit test that demonstrates things like this is always a problem, but that's probably the only way we can see what's going on. Otis --- [EMAIL PROTECTED] wrote: > Otis, > > no idea how I run into it. That's why to create a unit is a bit > problematic. > > In Lucene code it lo

Re: weird lock behavior

2004-08-27 Thread iouli . golovatyi
Otis, no idea how I run into it. That's why to create a unit is a bit problematic. In Lucene code it looks like that reader tries every 1 sec to read the index 10 times. After that it says - it just can not be that it's locked so long, I'd query anyway. That's why 10sec delay. >Iouli,