From: Wolfgang M. M. <wol...@us...> - 2004-04-27 15:47:10
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/http In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28184/src/org/exist/http Modified Files: RESTServer.java Log Message: * XQuery node construction consumed too much memory: instead of generating a SAX stream, nodes are now directly copied to the created output fragment. * QName objects are now created through the global name pool and thus shared between node objects. Index: RESTServer.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/http/RESTServer.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** RESTServer.java 23 Apr 2004 13:07:47 -0000 1.8 --- RESTServer.java 27 Apr 2004 15:46:59 -0000 1.9 *************** *** 464,468 **** long queryTime = System.currentTimeMillis() - startTime; LOG.debug("Found " + resultSequence.getLength() + " in " + queryTime + "ms."); - startTime = System.currentTimeMillis(); return printResults(broker, resultSequence, howmany, start, queryTime, outputProperties); --- 464,467 ---- |