v0.7.3까지 반영 #114

Closed
Hide_D wants to merge 310 commits from devel into master
Showing only changes of commit bb49e6dec7 - Show all commits
+2 -2
View File
@@ -92,7 +92,7 @@ class KVStorage{
if($onlyCache && $this->cacheData !== null && count($this->cacheData) > 0){
return $this->cacheData;
}
$result = $this->getAll();
$result = $this->getDBAll();
if($this->cacheData !== null){
$this->cacheData = $result;
}
@@ -171,7 +171,7 @@ class KVStorage{
{
$result[$key] = Json::decode($value);
}
return $value;
return $result;
}
private function getDBValues(array $keys): array{