Re: TooManyClauses by wildcard queries

2009-09-10 Thread Patricio Galeas
queries, if needed. - Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de -Original Message- From: Patricio Galeas [mailto:gal...@prometa.de] Sent: Thursday, September 10, 2009 10:41 AM To: java-user@lucene.apache.org Subject

TermPositionVector.indexesOf()

2007-10-04 Thread Patricio Galeas
Hello, I'm using the following method to obtain the position of some terms in a document: int[] indexOfTerms = TermPositionVector.indexesOf(String[] terms, int start, int len); Should I parse the strings contained in terms before I apply indexOf()? Thank you in advance Patricio -- Ist Ihr

Lucene Index Size ...

2007-02-04 Thread Patricio Galeas
Hello, Where can I find some information about index size increments by using TermVector.WITH_POSITIONS? Thank You Pat -- Feel free - 10 GB Mailbox, 100 FreeSMS/Monat ... Jetzt GMX TopMail testen: http://www.gmx.net/de/go/topmail?ac=OM.GX.GX003K11713T4783a

adding term information to Index

2006-06-08 Thread Patricio Galeas
Hello, I try to use Lucene to make some experiments with the distribution of words in documents. Using the TermPositionVector, one can compute some statistics about word positions (mean, standard deviation, etc.). It is possible to store such statistical values directly in the Lucene index?

Java heap space ...after index process

2005-10-26 Thread Patricio Galeas
Hello All, I try to index some PDF documents using PDFBox. It works apparent normally, but when the index process ends, I get the following message: Exception in thread main java.lang.OutOfMemoryError: Java heap space Do you have some idea? Thanks Patricio

Example ....Lucene with Java Server Pages?

2005-09-21 Thread Patricio Galeas
Hello, I search for a JSP examples of a simple search application with Lucene. I try to execute the lucene search as a .jsp file but it doesn't work. Do you know where can I found information about this topic Thank You - To

saving additional data in the index .....????

2005-08-17 Thread Patricio Galeas
Hi All, I have indexed a document collection using the option “WITH_POSITIONS”: doc.add(new Field(contents, new FileReader(f), Field.TermVector.WITH_POSITIONS)); ...to get the positions in which each of the terms is found: wordPositionsVector = termPositionVector.getTermPositions(wordIndex) ;