We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 665e54d commit 314164aCopy full SHA for 314164a
crates/re_query_cache/src/cache.rs
@@ -51,8 +51,6 @@ static CACHES: Lazy<StoreSubscriberHandle> =
51
Lazy::new(|| re_data_store::DataStore::register_subscriber(Box::<Caches>::default()));
52
53
/// Maintains the top-level cache mappings.
54
-//
55
-// TODO(#4730): SizeBytes support + size stats + mem panel
56
#[derive(Default)]
57
pub struct Caches(pub(crate) RwLock<HashMap<CacheKey, CachesPerArchetype>>);
58
@@ -368,7 +366,6 @@ pub struct CacheBucket {
368
366
pub(crate) total_size_bytes: u64,
369
367
//
370
// TODO(cmc): secondary cache
371
- // TODO(#4730): size stats: this requires codegen'ing SizeBytes for all components!
372
}
373
374
impl CacheBucket {
0 commit comments