Runtime stats for CachingStore's manpage lookup cache.
| 21 | |
| 22 | |
| 23 | class ManpageCacheInfo(NamedTuple): |
| 24 | """Runtime stats for CachingStore's manpage lookup cache.""" |
| 25 | |
| 26 | hits: int |
| 27 | misses: int |
| 28 | entries: int |
| 29 | size_bytes: int |
| 30 | max_bytes: int |
| 31 | |
| 32 | |
| 33 | # Sized for our current prod instances. |