Command
ZADD key score memberExplanation
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 memberAdds 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"