https://learnku.com/docs/go-blog/qihoo/6532 。 heap size went up to 69G, with maximum garbage collect
Posted yuanjiangw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了https://learnku.com/docs/go-blog/qihoo/6532 。 heap size went up to 69G, with maximum garbage collect相关的知识,希望对你有一定的参考价值。
https://learnku.com/docs/go-blog/qihoo/6532
-
Use a Task Pool, a mechanism with a group of long-lived goroutines consuming global task or message queues sent by connection goroutines, to replace short-lived goroutines.
-
Monitor and control goroutine numbers in the program. The lack of control can cause unbearable burden on the GC, imposed by surges in goroutines due to uninhibited acceptance of external requests, as RPC invocations sent to inner servers may block goroutines recently created.
-
Remember to add read and write deadlines to connections when under a mobile network; otherwise, it may lead to goroutine blockage. Apply it properly and with caution when under a LAN network, otherwise your RPC communication efficiency will be hurt.
-
Use Pipeline (under Full Duplex feature of TCP) to enhance the communication efficiency of RPC framework.
以上是关于https://learnku.com/docs/go-blog/qihoo/6532 。 heap size went up to 69G, with maximum garbage collect的主要内容,如果未能解决你的问题,请参考以下文章
开发环境搭建 - Windows |《Laravel 开发环境部署 7.x》
开发环境搭建 - Windows |《Laravel 开发环境部署 7.x》