text align tag + update/edit get desc + rating improve

This commit is contained in:
xiaomlove
2022-04-14 00:52:28 +08:00
parent d2a87ccda0
commit 9759c09320
44 changed files with 541 additions and 122 deletions

View File

@@ -276,10 +276,10 @@ class NexusDB
$result = $Cache->get_value($key);
if ($result === false) {
$result = $callback();
do_log("cache miss [$key]" );
do_log("cache miss [$key]", 'debug');
$Cache->cache_value($key, $result, $ttl);
} else {
do_log("cache hit [$key]");
do_log("cache hit [$key]", 'debug');
}
return $result;
} else {