HomeFilters

The 17 pipeline filters (and 4 scoring adjustments)

These run BEFORE and AFTER scoring. A post that trips a filter never gets ranked at all — most 'shadowban' experiences are filters, not weights. Source: home-mixer/filters/mod.rs and the pipeline order in candidate-pipeline/phoenix_candidate_pipeline.rs. Verified 2026-07-31.

FilterStageWhat it does
Duplicate droppre-scoringRemoves duplicate candidates of the same post before scoring.…
Core data hydrationpre-scoringDrops candidates whose core post data fails to hydrate — malformed/deleted/unavailable posts exit here.…
Age ceilingpre-scoringRemoves posts older than a max age (value withheld as a param). The Phoenix ranker itself buckets post age in …
Self-post removalpre-scoringYou are not shown your own posts in recommendations — and your own engagement with them earns nothing.…
Repost deduplicationpre-scoringMultiple reposts of the same underlying post collapse to one candidate.…
Subscription eligibilitypre-scoringSubscriber-only content is dropped for non-subscribers.…
Previously seenpre-scoringPosts the viewer already saw are removed (impression history + a bloom-filter backup).…
Previously servedpre-scoringPosts already served in recent responses are removed even if not confirmed seen.…
Muted keywordspre-scoringTokenizes post text (TweetTokenizer) and drops posts matching any viewer-muted keyword. Real text matching, pe…
Blocks/mutes graphpre-scoringDrops posts from authors the viewer blocked/muted AND from authors who block the viewer — including quoted aut…
Video excludepre-scoringFor surfaces that exclude video, any post with a video is dropped entirely.…
Topic pinningpre-scoringTopic-pinned requests only keep posts in those topics; new users get a special variant.…
Trust & safety visibility (VF)post-selectionApplies trust-and-safety visibility verdicts AFTER ranking. The enforcement logic lives in a withheld crate (x…
Conversation deduppost-selectionRemoves multiple posts from the same conversation in one response.…
Author diversity decayscoring adjustmentYour posts compete with each other. Candidates are sorted by score; your 2nd, 3rd, Nth post each get multiplie…
Out-of-network multiplierscoring adjustmentDiscovery reach (For You beyond your followers) is a single multiplicative dial applied after everything else.…
Minimum video duration gatescoring adjustmentShort videos earn zero video-view credit.…
Negative score offsetscoring adjustmentNet-negative posts aren't clamped to zero — they're remapped into a low band below every net-positive post. Ne…