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
Add code comment about use of Collections#synchronizedMap in LRUQueryCache. (#14749)
It may not be totally obvious why this map needs to be synchronized since reads
and writes are performed under a read-write lock. Except that unlike most other
collections, reads are not thread-safe on a `LinkedHashMap`.
Closes#14677
Co-authored-by: Benjamin Trent <[email protected]>
0 commit comments