CachedWithinFlush()
Flushes a specific cached entry from the cache. Works with cached queries, functions, and HTTP results. This allows selective cache invalidation instead of clearing entire caches, enabling fine-grained cache control when underlying data changes.
Introduced: 7.1.0.11
CachedWithinFlush( cacheObject=any, arguments=any );
Returns: Boolean
| Argument | Description |
|---|---|
|
cacheObject
any,
required
|
edit
The cached object to flush from cache. Must be a valid cache object such as a query result, function reference, or HTTP result struct that was cached using the |
|
arguments
any,
optional
|
edit
The arguments used when the cache entry was created.
Required for cached functions to identify the specific cache entry, as each unique set of arguments creates a separate cache entry.
Can be provided as an array |
Examples
There are currently no examples for this function 30,344ms WARN No examples for function CachedWithinFlushSee also
- Cache
- CachedWithinId()
- CacheGet()
- CachePut()
- Selective Cache Invalidation
- Search Issue Tracker open_in_new
- Search Lucee Test Cases open_in_new (good for further, detailed examples)