Update Data in Cache

You can update the key-value pair in a cache segment using the update() method. You must pass the key name and key-value which are of the String type as arguments. If the values aren’t present, they will be inserted into the cache segment.

You can also optionally pass the expiry time parameter. The expiration time will be set to 48 hours by default if the value is not specified explicitly.

The segment_service reference used below is already defined in the component instance page.

    
copy
#Update data in cache segment_service.update('Name', 'Michael Scott')

A sample response is shown below :

    
copy
{ cache_name: "Name", cache_value: "Michael Scott", project_details: { project_name: "AlienCity", id: "2136000000007733" }, segment_details: { segment_name: "Data Store", id: "2136000000008572" }, expires_in: "Aug 18, 2021 06:46 PM", expiry_in_hours: "47", ttl_in_milliseconds: "172596000" }

Last Updated 2023-12-18 16:20:08 +0530 +0530

ON THIS PAGE