Function Set

Sets a cache value

Set([KEY],[VALUE])

Parameters

# Type Passing Default Name Description/Comments
1 string required n/a KEY The key to use
2 any required n/a VALUE The value to cache

Returns

n/a


Examples

Example of setting and searching the cache

{{Set("MyValue",100)}}

Cached value is {{Get("MyValue")}}