Re: Use an executable from java ...

2005-02-08 Thread Christiaan Fluit
Kristian Hermsdorf wrote: We're using pdftotext as well, because PDFbox ist really slow. If your application should work under Windows you will probably experiance some mystic Java-VM crashes while executing external processes in batch-mode. (This is because of a bug in Windows-VM... we

determination of matching hits

2004-12-20 Thread Christiaan Fluit
fields. I haven't touched the default operator, but the queries A AND -B and A AND NOT B give the same conflicting overlap in the result set. Thanks in advance, Christiaan Fluit Aduna.biz -- - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: determination of matching hits

2004-12-20 Thread Christiaan Fluit
ok, I feel a bit stupid now ;) Turns out this issue has been discussed a while ago on both mailing lists and I even participated in one of them... shame on me. The problem is indeed in how MFQP parses my query: the query A -B becomes: (text:A -text:B) (title:A -title:B) (path:A -path:B)

Re: displaying search results

2004-11-15 Thread Christiaan Fluit
use we have an attractive offering (as judged by the universities using it!). Regards, Christiaan Fluit Aduna.biz -- - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Backup strategies

2004-10-27 Thread Christiaan Fluit
Christoph Kiehl wrote: I'm curious about your strategy to backup indexes based on FSDirectory. If I do a file based copy I suspect I will get corrupted data because of concurrent write access. My current favorite is to create an empty index and use IndexWriter.addIndexes() to copy the current

Re: search exception in servlet!Please help me

2004-08-04 Thread Christiaan Fluit
Erik Hatcher wrote: Where did you get 'i'? Keep in mind that using Hits.doc(n) intends 'n' to be a document *id*, not the iteration through the Hits collection. This is a very common mistake, and I'm guessing one you've made here. I believe the Javadoc (as well as my own experience) tells

Re: PDFBox problem.

2004-07-23 Thread Christiaan Fluit
We invoke the following code in a static initializer that simply disables log4j's output entirely. static { Properties props = new Properties(); props.put(log4j.threshold, OFF); org.apache.log4j.PropertyConfigurator.configure(props);