Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Jetty have requests cache?

I have some tests that run a couple of jetty servlets and send requests to them from other threads. I often see that as soon as the servlets are started they receive valid requests even before those other threads were started, as if the requests were cached somewhere and re-read when jetty starts. Could it be? And if so, how can it be disabled?

like image 825
Vic Avatar asked Dec 23 '12 21:12

Vic


1 Answers

Jetty does not have request caching.

like image 127
jesse mcconnell Avatar answered Nov 07 '22 20:11

jesse mcconnell