| 1642 | } |
| 1643 | |
| 1644 | type lruSessionCacheEntry struct { |
| 1645 | sessionKey string |
| 1646 | state *ClientSessionState |
| 1647 | } |
| 1648 | |
| 1649 | // NewLRUClientSessionCache returns a [ClientSessionCache] with the given |
| 1650 | // capacity that uses an LRU strategy. If capacity is < 1, a default capacity |
nothing calls this directly
no outgoing calls
no test coverage detected