+ [perf] Reset the last update time of userview related tables after updating them.

This commit is contained in:
liugang
2025-07-22 14:21:09 +08:00
parent c2b66e181e
commit ecf856a1b3
+5
View File
@@ -1264,6 +1264,11 @@ class baseDAO
}
}
if(in_array($table, $this->config->userview->relatedTables))
{
$this->dbh->exec('UPDATE ' . TABLE_CONFIG . " SET `value` = '" . time() . "' WHERE `owner` = 'system' AND `module` = 'common' AND `section` = 'userview' AND `key` = 'relatedTablesUpdateTime'");
}
if($this->config->enableDuckdb)
{
$queueTable = TABLE_DUCKDBQUEUE;