Skip to content

Ask HN: Any good resource on writing your own mmap allocator?

6 pointscplat2 comments
On HN

I've been experimenting with using mmapped files as storage. One thing that I'm trying out is writing variable sized records to an mmapped file. However, I'll also be supporting deletions and updates, so fragmentation can become a big problem. Moreover, there could be records written at different times that need to be physically "colocated" for efficiency.

My question is, are there good resources to get started on working on on-disk allocators? I don't want to get there in a day, but need a solid direction. Thanks!

Comments

I collected some links to interesting and useful links about allocators here https://github.com/rain-1/awesome-allocators

I think you would look into bitmap based allocators (which only handles fixed size allocations, but it's very simple) and then (more advanced) binary buddies system to start with.

* http://sean.cm/a/tricolor-garbage-collector

* http://www.memorymanagement.org/mmref/alloc.html

cplatOP

Thanks! This is very useful.

AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.