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
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.
--
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
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.
---
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