Обсуждение: pgsql-server/src backend/bootstrap/bootstrap.c ...

Поиск
Список
Период
Сортировка

pgsql-server/src backend/bootstrap/bootstrap.c ...

От
wieck@svr1.postgresql.org (Jan Wieck)
Дата:
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    wieck@svr1.postgresql.org    03/11/19 11:55:08

Modified files:
    src/backend/bootstrap: bootstrap.c
    src/backend/catalog: index.c
    src/backend/commands: dbcommands.c
    src/backend/postmaster: postmaster.c
    src/backend/storage/buffer: bufmgr.c freelist.c
    src/backend/storage/lmgr: proc.c
    src/backend/utils/misc: guc.c postgresql.conf.sample
    src/include/bootstrap: bootstrap.h
    src/include/storage: bufmgr.h proc.h

Log message:
    Background writer process

    This first part of the background writer does no syncing at all.
    It's only purpose is to keep the LRU heads clean so that regular
    backends seldom to never have to call write().

    Jan