Quantcast
Channel: The Postgres Builders Blog
Viewing all articles
Browse latest Browse all 501

Exploring Postgres's arena allocator by writing an HTTP server from scratch

$
0
0
Postgres manages memory through nested arenas called MemoryContexts. MemoryContexts are convenient because, for the most part, you don't need to worry about explicitly freeing memory because memory allocated within the context will be freed when the context is freed. So the next two things you worry about, things that took me a while to understand, are 1) in which MemoryContext should some particular object be allocated (i.e. how long should some particular object live) and 2) when should I reach for creating a new MemoryContext? To help get a feel for how we can use MemoryContexts we're going

Viewing all articles
Browse latest Browse all 501

Trending Articles