TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

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

6 pointsby cplatover 6 years ago
I&#x27;ve been experimenting with using mmapped files as storage. One thing that I&#x27;m trying out is writing variable sized records to an mmapped file. However, I&#x27;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 &quot;colocated&quot; for efficiency.<p>My question is, are there good resources to get started on working on on-disk allocators? I don&#x27;t want to get there in a day, but need a solid direction. Thanks!

1 comment

rain1over 6 years ago
I collected some links to interesting and useful links about allocators here <a href="https:&#x2F;&#x2F;github.com&#x2F;rain-1&#x2F;awesome-allocators" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;rain-1&#x2F;awesome-allocators</a><p>I think you would look into bitmap based allocators (which only handles fixed size allocations, but it&#x27;s very simple) and then (more advanced) binary buddies system to start with.<p>* <a href="http:&#x2F;&#x2F;sean.cm&#x2F;a&#x2F;tricolor-garbage-collector" rel="nofollow">http:&#x2F;&#x2F;sean.cm&#x2F;a&#x2F;tricolor-garbage-collector</a><p>* <a href="http:&#x2F;&#x2F;www.memorymanagement.org&#x2F;mmref&#x2F;alloc.html" rel="nofollow">http:&#x2F;&#x2F;www.memorymanagement.org&#x2F;mmref&#x2F;alloc.html</a>
评论 #18258058 未加载