Showing
1 changed file
with
19 additions
and
0 deletions
@@ -336,6 +336,25 @@ class CacheSSDB extends Root implements CacheInterface | @@ -336,6 +336,25 @@ class CacheSSDB extends Root implements CacheInterface | ||
336 | { | 336 | { |
337 | return $this->init()->zrrange($zname, $offset, $limist); | 337 | return $this->init()->zrrange($zname, $offset, $limist); |
338 | } | 338 | } |
339 | + | ||
340 | + | ||
341 | + /** | ||
342 | + * 删除 zset 中的指定 key. | ||
343 | + */ | ||
344 | + public function zdel($zname, $key) | ||
345 | + { | ||
346 | + return $this->init()->zdel($zname, $key); | ||
347 | + } | ||
348 | + | ||
349 | + | ||
350 | + /** | ||
351 | + * 删除 zset 中的所有 key. 如果出错则返回 false, 否则返回删除的 key 的数量. | ||
352 | + */ | ||
353 | + public function zclear($zname) | ||
354 | + { | ||
355 | + return $this->init()->zclear($zname); | ||
356 | + } | ||
357 | + | ||
339 | } | 358 | } |
340 | 359 | ||
341 | 360 |
-
Please register or login to post a comment