lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> It seems that:
> 
> After a enought amount of `youngcollection`, Lua will execute the `fullgen`.
> 
> If there is a huge amount of OLD object, the `fullgen` will make the STW
> for a long while.
> 
> 
> I'm curious why not switch to incremental mode instead of executing
> `fullgen`.

If it swithces to incremental mode, it will never switch back.
The idea of this behavior is to try to adapt the collector
temporarily. (I am not sure we will keep it that way.)

-- Roberto