Changes with Apache 2.0.55
+
+ *) mod_rewrite: use buffered I/O to improve performance with large
+ RewriteMap txt: files. [Greg Ames]
*) proxy HTTP: Rework the handling of request bodies to handle
chunked input and input filters which modify content length, and
(ignore changes to event MPM, which don't apply to 2.0.x)
+1: trawick, jorton, gregames
- *) mod_rewrite: use buffered I/O for RewriteMap txt: files
- http://svn.apache.org/viewcvs.cgi?rev=161354&view=rev
- +1: gregames, trawick, striker
-
*) several changes to improve logging of connection-oriented errors, including
ap_log_cerror() API (needs minor bump in addition to changes below)
http://cvs.apache.org/viewcvs.cgi/httpd-2.0/server/core.c?r1=1.289&r2=1.291
char *curkey;
char *curval;
- rc = apr_file_open(&fp, file, APR_READ, APR_OS_DEFAULT, r->pool);
+ rc = apr_file_open(&fp, file, APR_READ|APR_BUFFERED, APR_OS_DEFAULT, r->pool);
if (rc != APR_SUCCESS) {
return NULL;
}