Skip to content

Commit 39d74ed

Browse files
committed
Update predis.php
DELETE command update as per Predis driver issue #144 https://github.com/khoaofgod/phpfastcache/issues/144
1 parent a5b7299 commit 39d74ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phpfastcache/3.0.0/drivers/predis.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ function driver_get($keyword, $option = array()) {
122122
function driver_delete($keyword, $option = array()) {
123123

124124
if($this->connectServer()) {
125-
$this->instant->delete($keyword);
125+
$this->instant->del($keyword);
126126
}
127127

128128
}

0 commit comments

Comments
 (0)