Create and Update API
put
Store a key-value pair in the cache.
CacheApi.put(cacheName, key, value)Parameters
cacheName: string
key: string
value: objectReturns
A Result object indicating the success or failure of the operation.putNoLock
Store a key-value pair in the cache without acquiring a lock.
Cache.putNoLock(cacheName, key, value)Parameters
cacheName: string
key: string
value: objectReturns
publishMessage
Publish a message to a specified topic.
Parameters
Returns
Last updated