-
请问skynet是在什么时候执行collectgarbage呢? 具体点说,collectgarbage("collect") 需要我自己调用吗? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
skynet 秉承标准 Lua 的逻辑:Lua 的 GC 是分配驱动的,只有申请新内存才推进 GC 。 |
Beta Was this translation helpful? Give feedback.
-
明白了, 感谢大佬回复 |
Beta Was this translation helpful? Give feedback.
-
我们是 长期存在的服务用 分代模式,agent用增量式。线上测试内存比较稳定,不会无限增长 |
Beta Was this translation helpful? Give feedback.
-
学到了
Bruce ***@***.***> 于 2022年2月21日周一 18:14写道:
… 我们是 长期存在的服务用 分代模式,agent用增量式。线上测试内存比较稳定,不会无限增长
—
Reply to this email directly, view it on GitHub
<#1540 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AH6SKO6OCRM26JIBUWOTWXTU4IGBXANCNFSM5O6DK3EA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
skynet 秉承标准 Lua 的逻辑:Lua 的 GC 是分配驱动的,只有申请新内存才推进 GC 。
skynet 每个服务都是独立的 Lua VM , 每个 VM 的 GC 是相互独立的,以标准 Lua 的形式工作。