Re: pgsql: Pull up isReset flag from AllocSetContext to MemoryContext struc - Mailing list pgsql-committers

From Tom Lane
Subject Re: pgsql: Pull up isReset flag from AllocSetContext to MemoryContext struc
Date
Msg-id 26356.1306088286@sss.pgh.pa.us
Whole thread Raw
In response to pgsql: Pull up isReset flag from AllocSetContext to MemoryContext struc  (Heikki Linnakangas <heikki.linnakangas@iki.fi>)
Responses Re: pgsql: Pull up isReset flag from AllocSetContext to MemoryContext struc
List pgsql-committers
Heikki Linnakangas <heikki.linnakangas@iki.fi> writes:
> Pull up isReset flag from AllocSetContext to MemoryContext struct. This
> avoids the overhead of one function call when calling MemoryContextReset(),
> and it seems like the isReset optimization would be applicable to any new
> memory context we might invent in the future anyway.

> This buys back the overhead I just added in previous patch to always call
> MemoryContextReset() in ExecScan, even when there's no quals or projections.

Do you actually have any measurements that prove that?  This seems like
a rather ugly destruction of a modularity boundary in return for a
hypothetical performance gain.  I'm also concerned that you've probably
added cycles on net to MemoryContextAlloc (where it's no longer possible
to tail-call AllocSetAlloc), which could very easily cost more cycles on
most workloads than could ever be saved by making MemoryContextReset a
shade faster.

            regards, tom lane

pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: pgsql: Put documentation of backslash commands back in alphabetical ord
Next
From: Tom Lane
Date:
Subject: pgsql: Make plpgsql provide the typmods for its variables to the main p