What is the difference between Tomcat's BIO Connector and NIO Connector?

前端 未结 4 1821
囚心锁ツ
囚心锁ツ 2020-12-02 05:51

I would like to know the internals of the tomcat NIO connector. How exactly are threads used when we create a servlet that implements CometProcessor?Is it still one thread p

4条回答
  •  隐瞒了意图╮
    2020-12-02 06:46

    Here are two good articles on the NIO connector in case this helps someone considering the differences between BIO (request processing is bound to accept thread) & NIO (request processing is passed onto another worker thread) in Tomcat.

    • NIO Connector via Tomcat Expert site
    • Overview of Tomcat connectors (PDF)

提交回复
热议问题