Skip to content

$Cache.Get

Overview

object $Cache.Get ( key )

Returns cached value if found.

Arguments

String key Key of value

Return Value

Returns value if found, otherwise null.

Remarks

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

Examples

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

See Also