|
|
|
|
|
by mxey
151 days ago
|
|
PostgreSQL shares other caches between processes so they probably could have a global plan cache if they wanted. I wonder why they don’t though. One possible reason is that the planner configuration can be different per connection, so the plans might not transfer |
|
I believe the plan data structure PG is intimately tied to process space memory addresses since it was never thought to share between them and can even contain executable code that was generated.
This makes it difficult to share between processes without a heavy redesign but would be a good change IMO.