Skip to content

Commit

Permalink
fixed delete command
Browse files Browse the repository at this point in the history
  • Loading branch information
Vito Famigletti committed Jan 19, 2017
1 parent 96b23cd commit f777614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/Cache/Redis.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function set($key,$value,$expire=0){
}

public function delete($key){
$this->redis->delete($key);
$this->redis->del($key);
}

public function exists($key){
Expand Down

0 comments on commit f777614

Please sign in to comment.