Note:
This topic has been translated from a Chinese forum by GPT and might contain errors.Original topic: 关于TiKV TTL的问题

I see that there is a TTL setting in the PB file for interacting with TiKV, which seems to allow setting TTL time for each key individually:
message RawCASRequest {
Context context = 1;
bytes key = 2;
bytes value = 3;
bool previous_not_exist = 4;
bytes previous_value = 5;
string cf = 6;
uint64 ttl = 7;
}
However, after setting the TTL, it did not take effect. What could be the issue?