Allenxuxu / gev

🚀Gev is a lightweight, fast non-blocking TCP network library / websocket server based on Reactor mode. Support custom protocols to quickly and easily build high-performance servers.
MIT License
1.73k stars 194 forks source link

OnConnect 里使用 c.set 的请教! #137

Closed maxbad closed 1 year ago

maxbad commented 1 year ago

在 OnConnect 里面用c.set设置的数据,在OnClose的时候需要自己清理吗? 还是连接断开的时候会自动释放啊呢?

Allenxuxu commented 1 year ago

在 OnConnect 里面用c.set设置的数据,在OnClose的时候需要自己清理吗? 还是连接断开的时候会自动释放啊呢?

Go 是有 GC 的语言,只要你别再外面其他地方持有就行。