[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Question about the major gc
- From: 重归混沌 <findstrx@...>
- Date: Wed, 15 Jul 2020 17:39:06 +0800
Hello.
I'm learning Lua's generational GC recently.
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`.
Please forgive me if I have any mistakes.