Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anyone aware of a simple example of a Netty HTTP server which supports persistent HTTP connections?

Tags:

http

netty

Can anyone provide an example of a simple HTTP server implemented using Netty, that supports persistent HTTP connections.

In other words, it won't close the connection until the client closes it, and can receive additional HTTP requests over the same connection?

like image 816
sanity Avatar asked Dec 18 '12 21:12

sanity


1 Answers

This is exactly one of the things their sample http code demonstrates.

like image 131
omerkudat Avatar answered Oct 29 '22 04:10

omerkudat