| 377 | } |
| 378 | |
| 379 | void |
| 380 | Config::sizeCacheAdd(std::string_view url, uint64_t size) |
| 381 | { |
| 382 | if (m_oscache) { |
| 383 | DEBUG_LOG("Adding url to cache: %.*s -> %" PRIu64, static_cast<int>(url.size()), url.data(), size); |
| 384 | m_oscache->set(url, size); |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | void |
| 389 | Config::sizeCacheRemove(std::string_view url) |
no test coverage detected