lhttp icon indicating copy to clipboard operation
lhttp copied to clipboard

go websocket, a better way to buid your IM server

Results 7 lhttp issues
Sort by recently updated
recently updated
newest added

# 如何关闭socket ``` initLHTTP() { this.lHttpClient = new Lhttp("ws://127.0.0.1:9527"); console.log(this.lHttpClient); }, lHTTPOnOpen() { if (this.visible === true) { this.lHttpClient.on_open = function(context) { context.subscribe("test", "", null, ""); }; } else {...

后端消息队列可以改成接口吗,后面有些情况下,可以用其他消息队列

内存不停增长,连接数在300左右,每天增涨4-5M

单机lhttp服务器的websocket最大连接数我按照https://www.jianshu.com/p/e0b52dc702d6的步骤优化系统的参数进行测试只有51322个,使用的服务器是dell 730xd,32g内存,测试软件使用https://github.com/changhu2013/websocket_bench。我想做到单机支撑10万个以上的websocket连接数,请问哪里可以再优化?谢谢。

How does it perform when it comes to RAM usage against [Gorilla WebSockets](https://github.com/gorilla/websocket) and [uWebSockets](https://github.com/uNetworking/uWebSockets)?

## Description While rebuilding the project using the latest version of Go, with Go's official recommendation to use gomodule for initialization and building, we found that the build process fails...