v0.7.3까지 반영 #114

Closed
Hide_D wants to merge 310 commits from devel into master
Showing only changes of commit 2d24ba659f - Show all commits
+5 -1
View File
@@ -22,6 +22,10 @@ class KVStorage{
return $this->setValue($key, $value);
}
public function __unset($key){
$this->deleteValue($key);
}
public function resetCache(bool $disableCache=true):self{
if($disableCache){
$this->cacheData = null;
@@ -185,7 +189,7 @@ class KVStorage{
$result[$key] = null;
}
}
return $value;
return $result;
}
private function getDBValue($key){