Vic
Vic

Reputation: 22041

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?

Upvotes: 6

Views: 565

Answers (1)

jesse mcconnell
jesse mcconnell

Reputation: 7182

Jetty does not have request caching.

Upvotes: 2

Related Questions