You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by pq...@apache.org on 2005/03/14 06:24:24 UTC

svn commit: r157389 - httpd/httpd/trunk/ROADMAP

Author: pquerna
Date: Sun Mar 13 21:24:22 2005
New Revision: 157389

URL: http://svn.apache.org/viewcvs?view=rev&rev=157389
Log:
small cleanup of the ROADMAP file.

Modified:
    httpd/httpd/trunk/ROADMAP

Modified: httpd/httpd/trunk/ROADMAP
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/ROADMAP?view=diff&r1=157388&r2=157389
==============================================================================
--- httpd/httpd/trunk/ROADMAP (original)
+++ httpd/httpd/trunk/ROADMAP Sun Mar 13 21:24:22 2005
@@ -32,20 +32,6 @@
       Remember, it just takes cvs diff -b (that is, --ignore-space-change)
       to see the code changes and ignore that cruft.  Get editing Justin :)
 
-    * revamp the input filter syntax to provide for ordering of
-      filters created with the Set{Input|Output}Filter and the
-      Add{Input|Output}Filter directives.  A 'relative to filterx' 
-      syntax is definately preferable.
-
-    * Platforms that do not support fork (primarily Win32 and AS/400)
-      Architect start-up code that avoids initializing all the modules 
-      in the parent process on platforms that do not support fork.
-
-    . Better yet - not only inform the startup of which phase it's in,
-      but allow the parent 'process' to initialize shared memory, etc,
-      and create a module-by-module stream to pass to the child, so the
-      parent can actually arbitrate the important stuff.
-
     * Replace stat [deferred open] with open/fstat in directory_walk.
       Justin, Ian, OtherBill all interested in this.  Implies setting up
       the apr_file_t member in request_rec, and having all modules use
@@ -77,19 +63,6 @@
         thread" that multiplexes writes on many connections, so
         that the worker thread doesn't have to wait around for
         the sendfile to complete.
-
-    * Add a string "class" that combines a char* with a length
-      and a reference count.  This will help reduce the number
-      of strlen and strdup operations during request processing.
-      Including both the length and allocation will save us a ton 
-      of reallocation we do today, in terms of string manipulation.
-
-        OtherBill asks if this is really an APR issue, not an HTTPD issue?
-
-        Brian notes that the performance optimization work in 2.0
-        has all but eliminated the original motiviation for this
-        idea.  The httpd doesn't spend that much time in strlen
-        calls any more.
 
 
 MAKING APACHE REPOSITORY-AGNOSTIC