We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentb986270 commit71812a9Copy full SHA for 71812a9
src/backend/utils/mmgr/README
@@ -6,9 +6,9 @@ Notes About Memory Allocation Redesign
6
Up through version 7.0, Postgres had serious problems with memory leakage
7
during large queries that process a lot of pass-by-reference data. There
8
was no provision for recycling memory until end of query. This needed to be
9
-fixed, even more so with the advent of TOAST whichwill allowedvery large
10
-chunksof data to be passed around in the system. This document describes
11
-the newmemory management system implemented in 7.1.
+fixed, even more so with the advent of TOAST whichallowsvery large chunks
+of data to be passed around in the system. This document describes the new
+memory management system implemented in 7.1.
12
13
14
Background