Re: Tomcat 3.3 / 4.0 confusion, rant and plan...

2000-11-04 Thread Sam Ruby/Raleigh/IBM

Pier P. Fumagalli wrote:

 If you want to go on and make a 3.3, do it, but if you want to
 implement Servlet 2.3 in that release, you'll get my -1...

Whether I personally agree with 3.x design or not, as an ASF member myself,
I believe that it is important to protect Costin's right to pursue it.

It was not terribly long ago that what became Catalina was controversial.

- Sam Ruby


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core Handler.java

2000-11-04 Thread Sam Ruby/Raleigh/IBM

  public void service(Request req, Response res)
  throws IOException, ServletException
  {
 +  synchronized(this) {
if( ! initialized ) {
try {
 init();
 @@ -271,6 +272,7 @@
 return;
}
}
 +  }

This looks significant from a performance perspective.  Wouldn't it be
better if an _additional_ if (!initialized) were added prior to the
synchronized?

- Sam Ruby


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]