| 1390 | } |
| 1391 | |
| 1392 | type lruSessionCacheEntry struct { |
| 1393 | sessionKey string |
| 1394 | state *ClientSessionState |
| 1395 | } |
| 1396 | |
| 1397 | // NewLRUClientSessionCache returns a ClientSessionCache with the given |
| 1398 | // capacity that uses an LRU strategy. If capacity is < 1, a default capacity |
nothing calls this directly
no outgoing calls
no test coverage detected