You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by Brian Pane <bp...@pacbell.net> on 2002/07/13 09:13:02 UTC

Re: cvs commit: apr/tables apr_tables.c

On Sat, 2002-07-13 at 00:08, brianp@apache.org wrote:
> brianp      2002/07/13 00:08:41
> 
>   Modified:    include  apr_tables.h
>                tables   apr_tables.c
>   Log:
>   Changed apr_table_elts() and apr_is_empty_table() from macros
>   to functions to make apr_table_t a fully abstract type

The reason for this, by the way, is that apr_table_get() still
ranks as a top bottleneck in httpd performance profiling.  If
we need to plug in a faster data structure in the future, this
change makes it easier to do so without breaking binary
compatibility.

--Brian