Trillo Workbench Python SDK
  • Introduction
    • Sample Example
  • BaseApi (Basic APIs)
  • LogApi (Logging APIs)
  • DSApi (Database APIs)
    • Overview
    • Retrieve APIs
    • Create and Update API
    • Delete APIs
    • Empty Table
    • Sample Functions Using API
  • FuncApi (Function APIs)
  • TaskApi (Task APIs)
  • CacheApi (Memory Cache APIs)
    • Delete APIs
    • Create and Update API
    • Retrieve APIs
  • StorageApi
  • CallLogger (Logging Level APIs)
  • CommandApi
  • OAuth1Api
  • Google Cloud APIs
    • BigQueryApi (BigQuery APIs)
    • GCSApi (Cloud Storage APIs)
    • GCPAuthApi
    • GCPRestApi
    • GCPTokenInfo
  • Metadata API (MetaApi)
    • Create and Update API
    • All Retrieve-Only
  • UMApi (User, Tenant, Roles APIs)
  • HttpApi (HTTP APIs)
  • SFTPApi
  • FileUtil
  • CSVApi
  • EmailApi (Email APIs)
  • DLPApi
  • DocApi
  • FolderApi
  • GCPGenApi
  • Util
Powered by GitBook
On this page
  • put
  • putNoLock
  • publishMessage
  1. CacheApi (Memory Cache APIs)

Create and Update API

put

Store a key-value pair in the cache.

CacheApi.put(cacheName, key, value)

Parameters

cacheName: string
key: string
value: object

Returns

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: object

Returns

A Result object indicating the success or failure of the operation.

publishMessage

Publish a message to a specified topic.

Cache.publishMessage(topic, message)

Parameters

topic: string
message: string

Returns

A Result object indicating the success or failure of the operation.
PreviousDelete APIsNextRetrieve APIs

Last updated 1 year ago