Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jetty Maxidletime

Tags:

jetty

When does maxidletime in jetty get triggered?

like image 845
Sri Avatar asked Jun 22 '10 14:06

Sri


1 Answers

The maxIdleTime setting is passed to the operating system's Socket handler and becomes the timeout value for that socket. If the other end of the connection keeps the connection alive, the connection will never be closed by the OS. Jetty's Thread will wait for as long as the OS deems the connection to be still 'alive'.

like image 100
Patrick Allaert Avatar answered Sep 28 '22 03:09

Patrick Allaert