MCPcopy Create free account
hub / github.com/apache/datafusion / cache_limit

Method cache_limit

datafusion/execution/src/cache/list_files_cache.rs:351–354  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

349
350impl ListFilesCache for DefaultListFilesCache {
351 fn cache_limit(&self) -> usize {
352 let state = self.state.lock().unwrap();
353 state.memory_limit
354 }
355
356 fn cache_ttl(&self) -> Option<Duration> {
357 let state = self.state.lock().unwrap();

Calls

no outgoing calls