Get the limit of the file embedded metadata cache.
(&self)
| 444 | |
| 445 | /// Get the limit of the file embedded metadata cache. |
| 446 | pub fn get_metadata_cache_limit(&self) -> usize { |
| 447 | self.file_metadata_cache.cache_limit() |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | pub const DEFAULT_METADATA_CACHE_LIMIT: usize = 50 * 1024 * 1024; // 50M |
no test coverage detected