Specify the limit of the file-embedded metadata cache, in bytes.
(mut self, limit: usize)
| 437 | |
| 438 | /// Specify the limit of the file-embedded metadata cache, in bytes. |
| 439 | pub fn with_metadata_cache_limit(mut self, limit: usize) -> Self { |
| 440 | self.cache_manager = self.cache_manager.with_metadata_cache_limit(limit); |
| 441 | self |
| 442 | } |
| 443 | |
| 444 | /// Specifies the memory limit for the object list cache, in bytes. |
| 445 | pub fn with_object_list_cache_limit(mut self, limit: usize) -> Self { |
no outgoing calls
no test coverage detected