Skip to content
Snippets Groups Projects
Select Git revision
  • benchmark-tools
  • postgres-lambda
  • master default
  • REL9_4_25
  • REL9_5_20
  • REL9_6_16
  • REL_10_11
  • REL_11_6
  • REL_12_1
  • REL_12_0
  • REL_12_RC1
  • REL_12_BETA4
  • REL9_4_24
  • REL9_5_19
  • REL9_6_15
  • REL_10_10
  • REL_11_5
  • REL_12_BETA3
  • REL9_4_23
  • REL9_5_18
  • REL9_6_14
  • REL_10_9
  • REL_11_4
23 results

postgresql.conf.sample

  • Tom Lane's avatar
    391eb5e5
    Reimplement free-space-map management as per recent discussions. · 391eb5e5
    Tom Lane authored
    Adjustable threshold is gone in favor of keeping track of total requested
    page storage and doling out proportional fractions to each relation
    (with a minimum amount per relation, and some quantization of the results
    to avoid thrashing with small changes in page counts).  Provide special-
    case code for indexes so as not to waste space storing useless page
    free space counts.  Restructure internal data storage to be a flat array
    instead of list-of-chunks; this may cost a little more work in data
    copying when reorganizing, but allows binary search to be used during
    lookup_fsm_page_entry().
    391eb5e5
    History
    Reimplement free-space-map management as per recent discussions.
    Tom Lane authored
    Adjustable threshold is gone in favor of keeping track of total requested
    page storage and doling out proportional fractions to each relation
    (with a minimum amount per relation, and some quantization of the results
    to avoid thrashing with small changes in page counts).  Provide special-
    case code for indexes so as not to waste space storing useless page
    free space counts.  Restructure internal data storage to be a flat array
    instead of list-of-chunks; this may cost a little more work in data
    copying when reorganizing, but allows binary search to be used during
    lookup_fsm_page_entry().