lruSessionCache is a ClientSessionCache implementation that uses an LRU caching strategy.
| 1382 | // lruSessionCache is a ClientSessionCache implementation that uses an LRU |
| 1383 | // caching strategy. |
| 1384 | type lruSessionCache struct { |
| 1385 | sync.Mutex |
| 1386 | |
| 1387 | m map[string]*list.Element |
| 1388 | q *list.List |
| 1389 | capacity int |
| 1390 | } |
| 1391 | |
| 1392 | type lruSessionCacheEntry struct { |
| 1393 | sessionKey string |
nothing calls this directly
no outgoing calls
no test coverage detected