top menu gradient

CACHE_SET

Puts the value into cache.‌

Syntax

=CACHE_SET(cacheName, cacheKey, cacheValue)

Parameters

  1. cacheName
    • Type: String
    • Description: Name of the cache to use.
  2. cacheKey
    • Type: Any
    • Description: Key to cache on.
  3. cacheValue
    • Type: Any
    • Description: Value to store in cache.

Returns

  • Type: Any
  • Description: Returns the value, that was passed to it.

Example

CACHE_SET("myCache", "key1", A1)
Copy to clipboard
Contents