aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/pgstatfuncs.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2022-10-14 12:36:14 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2022-10-14 12:36:14 -0400
commitf13b2088fa2d4455936e65459b77698a4452f932 (patch)
treea6fe1d9180324481b4ae4368c7d3af883e930094 /src/backend/utils/adt/pgstatfuncs.c
parent3057465acfbea2f3dd7a914a1478064022c6eecd (diff)
downloadpostgresql-f13b2088fa2d4455936e65459b77698a4452f932.tar.gz
postgresql-f13b2088fa2d4455936e65459b77698a4452f932.zip
Add auxiliary lists to GUC data structures for better performance.
The previous patch made addition of new GUCs cheap, but other GUC operations aren't improved and indeed get a bit slower, because hash_seq_search() is slower than just scanning a pointer array. However, most performance-critical GUC operations only need to touch a relatively small fraction of the GUCs; especially so for AtEOXact_GUC(). We can improve matters at the cost of a bit more space by adding dlist or slist links to the GUC data structures. This patch invents lists that track (1) all GUCs with non-default "source"; (2) all GUCs with nonempty state stack (implying they've been changed in the current transaction); (3) all GUCs due for reporting to the client. All of guc.c's performance-critical cases can make use of one or another of these lists to avoid searching the whole hash table. In particular, the stack list means that transaction end doesn't take time proportional to the number of GUCs, but only to the number changed in the current transaction. Discussion: https://postgr.es/m/2982579.1662416866@sss.pgh.pa.us
Diffstat (limited to 'src/backend/utils/adt/pgstatfuncs.c')
0 files changed, 0 insertions, 0 deletions