Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

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

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

See Also

  • No labels