lruSessionCache is a ClientSessionCache implementation that uses an LRU caching strategy.
| 871 | // lruSessionCache is a ClientSessionCache implementation that uses an LRU |
| 872 | // caching strategy. |
| 873 | type lruSessionCache struct { |
| 874 | sync.Mutex |
| 875 | |
| 876 | m map[string]*list.Element |
| 877 | q *list.List |
| 878 | capacity int |
| 879 | } |
| 880 | |
| 881 | type lruSessionCacheEntry struct { |
| 882 | sessionKey string |
nothing calls this directly
no outgoing calls
no test coverage detected