Cache Node Catalog
Cache category
Generated from 7 catalog nodes in Data/Cache.
Nodes in this category
Showing 7 of 7 generated node docs.
Delete Cache Entry
Data/CacheRemoves a value from the app's cache.
Get or Write Cache
Data/CacheReturns the cached value, or stores the fallback and returns that. Exactly one caller gets Written = true, even when several runs reach this node at the same moment. The cache is for small, hot values (about 1 MB max) — persist large data to the app's storage instead.
Has Cache Entry
Data/CacheChecks whether a key holds a live value, without downloading the value. To decide whether to compute something, prefer Get or Write Cache — it has no gap between the check and the write.
Invalidate Cache Namespace
Data/CacheRemoves every entry in the cache handle's namespace in one call — including entries with no lifetime. The handle must carry a namespace; per-key removal is the Delete Cache node's job.
Open Cache
Data/CacheOpens the app's key/value cache. Connect the result to Read, Write and Delete Cache nodes.
Read Cache
Data/CacheReads a value from the app's cache. Reports a miss when the key was never written or its lifetime has elapsed.
Write Cache
Data/CacheStores a value in the app's cache, optionally with a lifetime after which it disappears on its own. The cache is for small, hot values (about 1 MB max) — persist large data to the app's storage instead.