> No garbage collector
> Slots are stable for the life of the process; the heap grows with distinct content only.
So how is a program supposed to handle lots of unique content? Like a web server handling user requests?
> No garbage collector
> Slots are stable for the life of the process; the heap grows with distinct content only.
So how is a program supposed to handle lots of unique content? Like a web server handling user requests?
I apologize, you’re absolutely right!
Taking it at face value, you'd spawn a subprocess to handle each web request and exit once it's done.