Specifies the duration entries in the object list cache will be considered valid.
(mut self, ttl: Option<Duration>)
| 449 | |
| 450 | /// Specifies the duration entries in the object list cache will be considered valid. |
| 451 | pub fn with_object_list_cache_ttl(mut self, ttl: Option<Duration>) -> Self { |
| 452 | self.cache_manager = self.cache_manager.with_list_files_cache_ttl(ttl); |
| 453 | self |
| 454 | } |
| 455 | |
| 456 | pub fn with_file_statistics_cache_limit(mut self, limit: usize) -> Self { |
| 457 | self.cache_manager = self.cache_manager.with_file_statistics_cache_limit(limit); |
no test coverage detected