gnet icon indicating copy to clipboard operation
gnet copied to clipboard

🚀 gnet is a high-performance, lightweight, non-blocking, event-driven networking framework written in pure Go.

Results 66 gnet issues
Sort by recently updated
recently updated
newest added

**Please fill out the following system information before opening an issue:** - OS (e.g. Ubuntu 18.04): - Go version (e.g. Go 1.13): - gnet version (e.g. v1.0.0): **What is your...

help wanted
question
waiting for response

![image](https://user-images.githubusercontent.com/32168345/157409947-824a9877-16fc-44f4-9ea3-46c15ade10e7.png)

proposal
pending development
proposal accepted

近期在使用gnet 做 tcp代理的相关开发,感谢你开发这么好用的组件。 **问题:** > 发现gnet server 无法收到mysql Client 的数据。显示连接已建立。 使用[官方提供的TCP来测试](https://github.com/gnet-io/gnet-examples/tree/master/examples/echo_tcp), 但是`React`函数内并未收到任何数据。 经过检查,并不是codec 的问题。codec 内也并没有执行到。 我不确定这是个bug,还是我使用上有什么问题。 另外,使用原生的net包,可以代理mysql的请求。 期望得到你的回复。

help wanted
question

**What is your question about gnet?** i implement a redis server using gnet, but it can only pass the benchmark when one client send one request (-c 1, -n 1)...

help wanted
question
waiting for response

**Is your feature request related to a problem? Please describe.** I have heard the linux kernel performs significantly better when using a unique socket for each UDP 'connection', because the...

enhancement
proposal
pending development

I use gnet to write websocket server and it looks very promising, thanks for that framework! :) But I think it can be event better if there is API to...

enhancement
proposal
waiting for response
optimization
pending development

**What is your question about gnet?** Please describe your question meticulously. ```go client, err := gnet.NewClient( cs, gnet.WithCodec(codec), gnet.WithTCPNoDelay(gnet.TCPNoDelay), gnet.WithTCPKeepAlive(time.Minute*5), ) ```

help wanted
question
waiting for response
needs investigation

possible to add a proxy feature to this? been waiting for it for more than 1 year.

enhancement
proposal
waiting for response
pending development

**Is your feature request related to a problem? Please describe.** I am using gnet framework with 30k clients. And use aws codedeploy (blue/green). When I deploy new version of source...

enhancement
proposal
waiting for response
pending development

Exposing the file descriptor to gnet.Conn allows a developer more control over a socket, i.e. getting data from a unix domain socket. Its important to apply custom socket options for...