RE: java.lang.OutOfMemoryError in lucene

2006-03-24 Thread escobar5
Here is my search method, maybe it's something wrong with it: public Vector buscar(String busqueda) throws Exception, Error { Vector results = new Vector(); ResultadoBusqueda rb = null; IndexSearcher searcher = new IndexSearcher("/index"); Analyzer analyzer = new StandardAna

RE: java.lang.OutOfMemoryError in lucene

2006-03-23 Thread escobar5
But i have the IBM JDK 1.4.2, do you know if this version still have the problem?? -- View this message in context: http://www.nabble.com/java.lang.OutOfMemoryError-in-lucene-t1324911.html#a3551247 Sent from the Lucene - Java Users forum at Nabble.com. --

Re: java.lang.OutOfMemoryError in lucene

2006-03-22 Thread escobar5
I think the problem is not the memory, because i just tried to search in a 11k index that contains only one document but i still get the same problem. What else could it be? maybe the ibm jvm? -- View this message in context: http://www.nabble.com/java.lang.OutOfMemoryError-in-lucene-t1324911.ht

Re: java.lang.OutOfMemoryError in lucene

2006-03-22 Thread escobar5
I forgot to tell, i've already checked that and they are: -Xms = 306m -Xmx = 320m -- View this message in context: http://www.nabble.com/java.lang.OutOfMemoryError-in-lucene-t1324911.html#a3536145 Sent from the Lucene - Java Users forum at Nabble.com. ---

java.lang.OutOfMemoryError in lucene

2006-03-22 Thread escobar5
Hello, i'm having a problem when searching in lucene, i get a java.lang.OutOfMemoryError: JVMXE004:OutOfMemoryError, stAllocArray for executeJava failed. My index is about 17MB, when i run the search in my PC, it works ok, but when i deploy it in the AIX server i get the error. Can you tell m