Opened 8 years ago
Closed 8 years ago
#27381 closed New feature (wontfix)
Add a migration operation to enable to pg_prewarm extension for Postgres
Reported by: | petedmarsh | Owned by: | petedmarsh |
---|---|---|---|
Component: | contrib.postgres | Version: | dev |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | yes | UI/UX: | no |
Description
"The pg_prewarm module provides a convenient way to load relation data into either the operating system buffer cache or the PostgreSQL buffer cache." It is included with Postgres starting from 9.4.
Change History (3)
comment:1 by , 8 years ago
Version: | 1.10 → master |
---|
comment:2 by , 8 years ago
Owner: | set to |
---|
comment:3 by , 8 years ago
Resolution: | → wontfix |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
I don't think we should be shipping a
CreateExtension
subclass for every existing built-in Postgres extension. You can useCreateExtension('pg_prewarm')
for this case as documented.