Skip to content
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

ハイライト機能をサーバー側で個別に無効化出来るようにしてほしい #12591

Open
Sayamame-beans opened this issue Dec 6, 2023 · 5 comments
Labels
✨Feature This adds/improves/enhances a feature 👮Moderation Issues to monitor server users and content and maintain public safety.

Comments

@Sayamame-beans
Copy link
Member

Sayamame-beans commented Dec 6, 2023

Summary

タイトル通りです。featured系機能の全無効化ではなく、個別無効化を想定しています。
featured系機能の一覧?:

@bindThis
public updateGlobalNotesRanking(noteId: MiNote['id'], score = 1): Promise<void> {
return this.updateRankingOf('featuredGlobalNotesRanking', GLOBAL_NOTES_RANKING_WINDOW, noteId, score);
}
@bindThis
public updateGalleryPostsRanking(galleryPostId: MiGalleryPost['id'], score = 1): Promise<void> {
return this.updateRankingOf('featuredGalleryPostsRanking', GALLERY_POSTS_RANKING_WINDOW, galleryPostId, score);
}
@bindThis
public updateInChannelNotesRanking(channelId: MiNote['channelId'], noteId: MiNote['id'], score = 1): Promise<void> {
return this.updateRankingOf(`featuredInChannelNotesRanking:${channelId}`, GLOBAL_NOTES_RANKING_WINDOW, noteId, score);
}
@bindThis
public updatePerUserNotesRanking(userId: MiUser['id'], noteId: MiNote['id'], score = 1): Promise<void> {
return this.updateRankingOf(`featuredPerUserNotesRanking:${userId}`, PER_USER_NOTES_RANKING_WINDOW, noteId, score);
}
@bindThis
public updateHashtagsRanking(hashtag: string, score = 1): Promise<void> {
return this.updateRankingOf('featuredHashtagsRanking', HASHTAG_RANKING_WINDOW, hashtag, score);
}

Purpose

トレンド機能など、サーバーによってはアルゴリズムとの相性が悪く、無効化したいことがあるため。
また、お一人様サーバーなどでは有効である必要がないと考えられるため。

@tai-cha
Copy link
Contributor

tai-cha commented Jul 16, 2024

#13597 とも関連する話題なのですが、この無効化はfeatured関連の処理のスキップによる負荷軽減と見えなくすることのどちらが狙いですか?

(サーバー単位での無効化はベールロールで変えるということも考えうるため)

@Sayamame-beans
Copy link
Member Author

見えなくすることによって余分なモデレーションの負担を減らすことが私の主な狙いです

@tai-cha

This comment has been minimized.

@tamaina

This comment has been minimized.

@tai-cha
Copy link
Contributor

tai-cha commented Jul 16, 2024

見えなくすることによって余分なモデレーションの負担を減らすことが私の主な狙いです

これであれば #13597 ベースの解決法による無効化でもよさそう(その場合はユーザーのポリシーを見て無効化されていたらノート検索が利用できない時のように利用できませんと出すとかになる気がする)

@samunohito samunohito added the [Feat] ControlPanel Issues related to existing functionality, such as bugs or adding small features. label Nov 27, 2024
@samunohito samunohito added 👮Moderation Issues to monitor server users and content and maintain public safety. and removed [Feat] ControlPanel Issues related to existing functionality, such as bugs or adding small features. labels Nov 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✨Feature This adds/improves/enhances a feature 👮Moderation Issues to monitor server users and content and maintain public safety.
Projects
Status: Todo
Development

No branches or pull requests

4 participants