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. |
|
string or function |
optional |
A user-defined loader function (or name of a user-defined function) 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. 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. The callback signature for the loader is When no loader function is specified and a value is missing from the cache, the system returns null.
Note:
Depending on the execution of your script, the loader function may be called multiple times for a given cache value due to the ttl. Values only remain in the cache according to ttl. If the elapsed time between Cache.get calls for a given key exceed the ttl, the loader function will be called (because the value is no longer in the cache). For an example, see Retrieve Name of a City Based on a ZIP Code Using Cache and a Custom Loader Function. |
|
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
ttl: 18000
});
...
//Add additional code