Command
ZADD key score member
Explanation
Adds all specified members with their scores to the sorted set stored at key.
Examples
Add player with score
ZADD leaderboard 100 "player1"
Add another player
ZADD leaderboard 200 "player2"
ZADD key score member
Adds all specified members with their scores to the sorted set stored at key.
Add player with score
ZADD leaderboard 100 "player1"
Add another player
ZADD leaderboard 200 "player2"