Removes the `key`'s value from the cache.
(&self, key: &str)
| 605 | |
| 606 | /// Removes the `key`'s value from the cache. |
| 607 | pub(crate) async fn uncache_raw_config(&self, key: &str) { |
| 608 | let mut lock = self.config_cache.write().await; |
| 609 | lock.remove(key); |
| 610 | } |
| 611 | |
| 612 | /// Sets configuration for the given key to 32-bit signed integer value. |
| 613 | pub async fn set_raw_config_int(&self, key: &str, value: i32) -> Result<()> { |
no test coverage detected