From: Wolfgang M. M. <wol...@us...> - 2004-03-25 13:01:39
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/soap In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24347/src/org/exist/soap Modified Files: QuerySoapBindingImpl.java Log Message: * NativeBroker.findElementsByTagName now directly checks child, descendant and descendant-or-self relations by calling a passed instance of class NodeSelector. This saves one processing step when processing path expressions and reduces memory consumption. * clear the XQueryContext before putting a compiled expression into cache. Index: QuerySoapBindingImpl.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/soap/QuerySoapBindingImpl.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** QuerySoapBindingImpl.java 25 Feb 2004 15:31:59 -0000 1.18 --- QuerySoapBindingImpl.java 25 Mar 2004 12:50:51 -0000 1.19 *************** *** 288,291 **** --- 288,292 ---- resp.setQueryTime(System.currentTimeMillis() - start); expr.reset(); + context.reset(); } catch (Exception e) { LOG.debug(e.getMessage(), e); |