| 159 | bool RequestCache::Enabled() { return cache_size_ > 0; } |
| 160 | |
| 161 | int64_t RequestCache::GetFreeCacheSize() { return cache_size_ - used_size_; } |
| 162 | |
| 163 | int RequestCache::RemoveOne() { |
| 164 | std::lock_guard<std::recursive_mutex> lk(cache_mtx_); |
nothing calls this directly
no outgoing calls
no test coverage detected