svn commit: r388500 - /tomcat/connectors/trunk/util/java/org/apache/tomcat/util/net/AprEndpoint.java

2006-03-24 Thread remm
Author: remm Date: Fri Mar 24 04:37:27 2006 New Revision: 388500 URL: http://svn.apache.org/viewcvs?rev=388500view=rev Log: - As suggested by Peter, replace the (synced) Stack with a specialized unsynced stack. Modified:

Re: svn commit: r388500 - /tomcat/connectors/trunk/util/java/org/apache/tomcat/util/net/AprEndpoint.java

2006-03-24 Thread Peter Rossbach
Cool catch = Use simple data structure, with fine performance impact. :-) Peter Am 24.03.2006 um 13:37 schrieb [EMAIL PROTECTED]: Author: remm Date: Fri Mar 24 04:37:27 2006 New Revision: 388500 URL: http://svn.apache.org/viewcvs?rev=388500view=rev Log: - As suggested by Peter, replace the

Re: svn commit: r388500 - /tomcat/connectors/trunk/util/java/org/apache/tomcat/util/net/AprEndpoint.java

2006-03-24 Thread Remy Maucherat
Peter Rossbach wrote: Cool catch = Use simple data structure, with fine performance impact. :-) Believe it or not, but it's just a little bit faster than the stack (which has the same behavior, except with syncs). Rémy -

Re: svn commit: r388500 - /tomcat/connectors/trunk/util/java/org/apache/tomcat/util/net/AprEndpoint.java

2006-03-24 Thread Filip Hanik - Dev Lists
Remy Maucherat wrote: Peter Rossbach wrote: Cool catch = Use simple data structure, with fine performance impact. :-) Believe it or not, but it's just a little bit faster than the stack (which has the same behavior, except with syncs). you can only tell true performance improvement on