Re: TooManyClauses by wildcard queries

2009-09-10 Thread Patricio Galeas
Hi Uwe But if I don't use Lucene 2.9, is this procedure (items 1-4) the right way to avoid the TooManyClauses exception? or is there a more efficients procedure to do that? Thanks Patricio Uwe Schindler schrieb: Or use Lucene 2.9, it automatically uses constant score mode in wild

TooManyClauses by wildcard queries

2009-09-10 Thread Patricio Galeas
that? Thank you Patricio - To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional commands, e-mail: java-user-h...@lucene.apache.org

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 Patri

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 -

AW: Location Search: Latitude + Longitude

2006-07-09 Thread Patricio
Hi, In the Book "Lucene in Action" Chapter 6 "Extending search", there is an example for indexing geographical information, and order the search results based on distances between 2 points (x,y)->(y,z). I think that it could be interesting for you. Patricio -Ursprüngl

QueryTerms vs. IndexTerms

2006-07-03 Thread Patricio
ssential to determine the retrieved documents. I looked for this information in "Lucene in Action", but unfortunately I couldn't find enough details (in Chapter 3.2) about this topic. Does somebody know where takes place (source code) this comparison? Thank You in advance

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? For

adding term information to index ...

2006-06-08 Thread Patricio
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? For

AW: Java heap space ...after index process

2005-10-26 Thread Patricio Galeas
= 0.7.2 Thank You for your help Patricio -Ursprüngliche Nachricht- Von: Ben Litchfield [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 26. Oktober 2005 21:17 An: java-user@lucene.apache.org Betreff: Re: Java heap space ...after index process Is this only after the entire indexing proc

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? Thank

Re: Lucene in Action : example code -> document-parsing framework ...

2005-10-17 Thread Patricio Galeas
dex(FileIndexer.java:36) at org.galeas.index.handlingtypes.framework.FileIndexer.main(FileIndexer.java:77) What do I wrong? Thank You Patricio Ben Litchfield schrieb: In addition, the latest version(0.7.2) of PDFBox does not require log4j, so you could also upgrade to that version. Ben

Lucene in Action : example code -> document-parsing framework ...

2005-10-17 Thread Patricio Galeas
rk.FileIndexer.index(FileIndexer.java:43) at lia.handlingtypes.framework.FileIndexer.index(FileIndexer.java:36) at lia.handlingtypes.framework.FileIndexer.main(FileIndexer.java:77) --- Have anybody some idea ?

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 uns

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

2005-08-17 Thread Patricio Galeas
to request the saved data later by the search process, ... something like : int[] wordPositionsStatistics = termPositionVector.getTermPositionsStatistics(wordIndex) Have somebody any idea? thank you in advance. Patricio - To u

AW: Terms & Postion from Hits ...

2005-04-12 Thread Patricio Galeas
Hello! Do You mean: I must compile the latest classes of /lucene/java/trunk/src/java/org/apache/lucene/index (Rev.159229) and /lucene/java/trunk/src/java/org/apache/lucene/document (Rev.150682) and actualize my actual version of Lucene? Thank You for your help!! Patricio

Terms & Postion from Hits ...

2005-04-11 Thread Patricio Galeas
Hello, I am new with Lucene. I have following problem. When I execute a search I receive the list of document Hits. I get without problem the content of the documents too: for (int i = 0; i < hits.length(); i++) { Document doc = hits.doc(i); System.out.println(doc.get("content")); } N