Azure / DotNetty

DotNetty project – a port of netty, event-driven asynchronous network application framework
Other
4.09k stars 977 forks source link

who used in a production environment yet? #176

Closed 472405746 closed 7 years ago

tomek14 commented 7 years ago

I'm using it in production enviroment, as a server for gps trackers. Works great!. Rigth now i'm using version 0.32 from nuget, but I'm working on next version of my gps tracker server based on DotNetty with binaries compiled form dev branch, beacause it has better Loging abstraction (Microsoft.Extensions.Logging)

nayato commented 7 years ago

@472405746, we use it in Azure IoT. E.g.: https://github.com/Azure/azure-iot-sdk-csharp/blob/master/device/Microsoft.Azure.Devices.Client/Transport/Mqtt/MqttTransportHandler.cs#L490 @tomek14, I'm working on 0.4.0 release right now.

StormHub commented 7 years ago

I have been using both DotNetty and original Java Netty in production environment for quite some time. One of the big advantage of both packages is avoiding numerous unnecessary byte copying operations by design.