BloomQueryCacheInspector class

Visual query cache inspection and management engine for Bloom DevTools.

Allows inspecting all cached items, marking keys stale, or purging the cache.

Example:

final entries = BloomQueryCacheInspector.inspectAll();
BloomQueryCacheInspector.markStale(['users', 42]);

Constructors

BloomQueryCacheInspector()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

inspectAll() List<QueryCacheDescriptor>
Inspects all active query cache entries.
markStale(List key) → void
Marks a query key as stale to trigger background revalidation.
purgeAll() → void
Purges all query cache entries immediately.
purgeKey(List key) → void
Purges an individual query cache key.