01When a match ends, what is the score event — latest score, best score, or cumulative points?
Keep-highest score semantics: an update only ever raises a player’s recorded best (ZADD GT does this in one atomic step), so replays and out-of-order submissions can never lower it.
02Does a player see only the top-100, or their own exact position on the board?
Two read shapes: a public top-N board, and every player’s own position — “you are #48,231” — which is a different and much harder query than the top list.
03Where do score writes come from — the game client, or a server we trust?
Only trusted game servers submit scores, and every submission passes anti-cheat validation before it can touch any public ranking.
04Is the board permanent, or does it reset every week or season?
Weekly and seasonal boards reset on schedule: the new season opens instantly at rollover while the closed board stays readable for rewards.
05Do players compete against strangers, or against their friends?
A friends view ranks the player among their own friends list — a per-user slice over the same scores, not another scoreboard to maintain.
06Two players land on exactly the same score — who shows up higher?
Ties break deterministically — earlier achieved-at timestamp wins — so two equal scores never swap places between two refreshes.