Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

Returns cached value by specified key if found.

string $Cache.Get(key: string)

Arguments

string key
Key of value

Returns

Returns value if found, otherwise null.

Remarks

Key name can be separated with ":" qualifier if required.

Example

Code Block
languagejs
var id = 1;
var myObject = $Cache.Get('myObject:' + id);