Hacker News new | ask | show | jobs
by ErikCorry 1427 days ago
That implies that you have to divide up the memory ahead of time into an area for each size? If you get the proportions wrong you will waste memory.

Languages with only one object size are not exactly in vogue at the moment, so this is a major limitation.

2 comments

> That implies that you have to divide up the memory ahead of time into an area for each size?

No, it doesn't, as it maintains linked lists of objects, so you can use any underlying allocator to feed you objects to add to the different linked lists.

You can extend or shrink circular list on the go, depending on needs. You can plan to divide memory ahead of time, but you don't have to.