-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
后台页面新增按照访问量和评论量排序功能 #3216
Comments
/kind feature |
/priority important-soon |
/assign |
没问题,但需要注意检查访问量和评论量的字段是否有添加索引。 |
这些访问量这些数据没有在文章的数据里面,所以无法增加索引和排序,目前没有想到一个好的方法来处理这件事,所以一直没做 |
我这里有一个不成熟的思路: 定期同步访问量和评论量到文章的 annotations 中,然后我们创建对应的索引。这样就可以非常方便地添加对应的排序功能了。 |
方向上目前来看我能想到的也是这种方式,但是在同步上希望考虑数据上尽量精准,最好不要查询所有文章去一个一个同步 |
我最后的思路是在创建索引数据的时候新加一些逻辑判断或方法,用来全量读取一次访问量和评论量的索引数据并创建索引(没想好有什么不错的构建索引数据的方法),运行时通过counter和traker的数据进行事件处理来更新索引 |
Hi @ZJamss ,也许你可以尝试一下。 |
#### What type of PR is this? /kind feature #### What this PR does / why we need it: 文章支持根据访问量和评论量排序 #### Which issue(s) this PR fixes: Fixes #3216 #### Does this PR introduce a user-facing change? ```release-note 文章支持根据访问量和评论量排序 ```
你当前使用的版本
2.2.0
描述一下此特性
在后台页面新增按照访问量和评论量排序功能。
附加信息
The text was updated successfully, but these errors were encountered: