3

アプリケーション内でmaxIdleTimeを使用して構成されている既存のJettyアプリケーションで作業しています。

<servlet>
      <servlet-name>UserServlet</servlet-name>
      <servlet-class>com.UserServlet</servlet-class>
      <init-param>
         <param-name>maxIdleTime</param-name>
           <param-value>300000</param-value>
      </init-param>
     </servlet>

Jettyのドキュメントによると、それは意味しますが、それが何を意味するのか理解できませんでしたか?誰か教えてください。前もって感謝します 。

Set the maximum Idle time for a connection, which roughly translates to the Socket.setSoTimeout(int) call, although with NIO implementations other mechanisms may be used to implement the timeout. The max idle time is applied: when waiting for a new request to be received on a connection; when reading the headers and content of a request; when writing the headers and content of a response. Jetty interprets this value as the maximum time between some progress being made on the connection. So if a single byte is read or written, then the timeout (if implemented by jetty) is reset. However, in many instances, the reading/writing is delegated to the JVM, and the semantic is more strictly enforced as the maximum time a single read/write operation can take. Note, that as Jetty supports writes of memory mapped file buffers, then a write may take many 10s of seconds for large content written to a slow device.
4

1 に答える 1

4

上記のコンテキストでは、ユーザーサーブレットの初期化パラメータとして、Jettyとは何の関係もありません。これは単にそのサーブレットに渡されるパラメータであり、それをどのように処理するかは完全にそのサーブレット次第です。

桟橋内で、コネクタに最大アイドル時間のようなものを設定しますか?それは、アイドルタイムアウトでシャットダウンされる前に、そのコネクタがトラフィックなしでアイドル状態を維持できる時間です。

于 2012-09-14T11:20:51.480 に答える