You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At any time, the user agent MAY "remove excess cookies" from the
cookie store if the number of cookies sharing a domain field exceeds
some implementation-defined upper bound (such as 50 cookies).
At any time, the user agent MAY "remove excess cookies" from the
cookie store if the cookie store exceeds some predetermined upper
bound (such as 3000 cookies).
50 cookies max per shared domain.
3000 cookies max per cookie store.
Jetty version(s)
12.0.x
Description
HttpCookieStore.Default
uses a lock to protect the data structures holding the cookies.However, it is rare that cookies are added, and much more common that cookies are read, so it should be a good case to use
ReentrantReadWriteLock
.The text was updated successfully, but these errors were encountered: