产品 |
是否支持 |
---|---|
√ |
|
x |
|
x |
|
x |
|
x |
移除CacheKey。
移除CacheKey后,该Cache将无法再被pull_cache拉取。
1 | remove_cache_key(cache_key: CacheKey) |
参数名称 |
数据类型 |
取值说明 |
---|---|---|
cache_key |
需要被移除的CacheKey。 |
1 2 3 4 5 | from llm_datadist import * ... cache_keys = [CacheKey(1, req_id=1), CacheKey(1, req_id=2)] cache_manager.remove_cache_key(cache_keys[0]) cache_manager.remove_cache_key(cache_keys[1]) |
如果CacheKey不存在或已移除,该操作为空操作。