web_article

This commit is contained in:
2024-12-28 20:11:15 +08:00
parent ed450130da
commit 935420d43a
2 changed files with 3 additions and 37 deletions

View File

@@ -72,8 +72,8 @@ CREATE INDEX idx_color_1 ON web_images (color_1_r, color_1_g, color_1_b);
-- 为 web_images 表的 day_rank 行设置倒序索引用于排序
CREATE INDEX idx_day_rank_desc ON web_images (day_rank DESC);
-- 为 web_images 表创建倒排复合索引
CREATE INDEX idx_article_dayrank ON web_images(article_category_top_id, day_rank DESC);
```