Use Jetty or Netty?

前端 未结 1 1798
醉酒成梦
醉酒成梦 2020-12-29 02:29

We\'re in the process of writing a high-performance server for processing messages. We\'ve been using Jetty for several years and like it, but Netty looks like it has some c

相关标签:
1条回答
  • 2020-12-29 03:22

    Jetty has had support for asynchronous request processing since version 6 (see here), using a proprietary API. More recent versions support the asynchronous API as part of the Servlet 3.0 API, like any other compliant implementation.

    Using Netty would seem like a lot of work for little gain, unless you have highly specific requirements. Otherwise, Jetty would do the job for you with minimal effort.

    0 讨论(0)
提交回复
热议问题