Update of /cvsroot/exist/eXist-1.0/src/org/exist/http
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5368/src/org/exist/http
Modified Files:
HttpServer.java
Log Message:
Fixed some synchronization issues in the XQuery engine:
* Compiled XQuery expressions are no longer shared between
different threads. The XQuery cache in XQueryServlet and
XQueryGenerator is declared as thread local now.
* The XQueryContext of a compiled XQuery now gets the correct
database broker object set.
Index: HttpServer.java
===================================================================
RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/http/HttpServer.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** HttpServer.java 29 Jan 2004 15:06:46 -0000 1.4
--- HttpServer.java 5 Mar 2004 11:15:28 -0000 1.5
***************
*** 235,239 ****
private static void printNotice() {
! System.out.println( "eXist version 0.9.2, Copyright (C) 2001 Wolfgang M. Meier" );
System.out.println( "eXist comes with ABSOLUTELY NO WARRANTY." );
System.out.println(
--- 235,239 ----
private static void printNotice() {
! System.out.println( "eXist version 1.0beta1, Copyright (C) 2001 Wolfgang M. Meier" );
System.out.println( "eXist comes with ABSOLUTELY NO WARRANTY." );
System.out.println(
|