增加搜索缓存

This commit is contained in:
2025-08-30 13:29:18 +08:00
parent 2a980c83d2
commit aa04f9d03f
5 changed files with 68 additions and 11 deletions
+1 -1
View File
@@ -335,7 +335,7 @@ class ArtistService {
try {
const cachedData = await this.apiCache.get(method, endpoint, data || {});
if (cachedData) {
console.log(`API缓存命中: ${method} ${endpoint}`);
// console.log(`API缓存命中: ${method} ${endpoint}`);
return cachedData;
}
} catch (error) {