setttl [table] ttl=[TTL] where key1 = 1 and key2 = "abc";
Parameter | Required | Limit | Description |
table | Yes | No | Table name |
TTL | Yes | The value cannot exceed half of the maximum value of uint64\\_t . In other words, the maximum TTL value is ULONG_MAX/2. A value exceeded this limit will be set to the maximum value. | Time to live in millisecond |
Key in the WHERE clause | Yes | All key values are required for TDR table. | Key values need to be declared. Multiple key values are joined with and . |
Situation | Return Message |
The record does not exist or has expired. | Record does not exist or has expired. |
Failed to set time to live. | Failed to set time to live. The error code is [error code] and the error message is [Error message]. |
Set time to live successfully. | Set time to live successfully. |
tcaplus> setttl mails ttl=2000 where key1 = 1 and key2 = "abc";Set time to live successfully.
Was this page helpful?