Cache.get(options)
Method Description |
Retrieves a string value from the cache. The value retrieved is identified by a key that you pass using the |
Returns |
String or null |
Supported Script Types |
Server scripts For more information, see SuiteScript 2.x Script Types. |
Governance |
1 unit if the value is present in the cache 2 units if the loader function is used |
Module |
|
Parent Object |
|
Sibling Object Members |
|
Since |
2016.2 |
Parameters
The options
parameter is a JavaScript object.
Parameter |
Type |
Required / Optional |
Description |
---|---|---|---|
|
string |
required |
The key corresponding to the value to be retrieved from the cache. This value cannot be null. For example, a ZIP code can be used as the key to retrieve city names. The maximum length of a key is 4KB (4096) bytes. |
|
function |
optional |
A user-defined loader function that is used to return the requested value when it is not present in the cache. When the loader function retrieves a value, the system automatically places that value in the cache. For this reason, you should use a loader function as the primary means of populating the cache. For an example, see N/cache Module Script Samples. If the value returned by the loader function is not a string, the system uses JSON.stringify() to convert the value before it is placed in the cache and returned. The maximum size of a value that can be placed in the cache is 500KB. When no loader function is specified and a value is missing from the cache, the system returns null. |
|
number |
optional |
The maximum duration, in seconds, that a value retrieved by the loader function can remain in the cache. Note that the value may be removed from the cache before the The minimum value is 300 (five minutes) and there is no maximum. The default
Important:
A cached value is not guaranteed to stay in the cache for the full duration of the |
Syntax
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/cache Module Script Samples.
//Add additional code
...
var myCache = cache.getCache({
name: 'temporaryCache',
scope: cache.Scope.PRIVATE
});
var myValue = myCache.get({
key: 'keyText',
loader: loaderFunction, // Specify the name of your loader function (see the N/cache Module Script Sample
ttl: 18000
});
...
//Add additional code