| 39 | } |
| 40 | |
| 41 | RequestCache* RequestCache::GetSingleton() { |
| 42 | static RequestCache cache(FLAGS_request_cache_size); |
| 43 | return &cache; |
| 44 | } |
| 45 | |
| 46 | int RequestCache::Hash(const Request& req, uint64_t* key) { |
| 47 | uint64_t log_id = req.log_id(); |
nothing calls this directly
no outgoing calls
no test coverage detected