...
|
...
|
@@ -200,8 +200,8 @@ class RedisPool { |
|
|
* @author:dc
|
|
|
* @time 2023/2/14 14:04
|
|
|
*/
|
|
|
public function delete($key):int {
|
|
|
return $this->getClient()->del($key);
|
|
|
public function delete(...$key):int {
|
|
|
return $this->getClient()->del(...$key);
|
|
|
}
|
|
|
|
|
|
/**
|
...
|
...
|
|