Complete the code to increase the score of member 'player1' by 10 in the sorted set 'game_scores'.
ZINCRBY game_scores [1] player1The ZINCRBY command increases the score of a member by the specified increment. Here, 10 is the increment.
Complete the code to increase the score of member 'user42' by 5 in the sorted set 'leaderboard'.
ZINCRBY [1] 5 user42
The first argument after ZINCRBY is the key name of the sorted set, here 'leaderboard'.
Fix the error in the command to increase 'memberX' score by 3 in 'scores'.
ZINCRBY scores [1] memberXThe increment must be a number, here 3, not the member name or other keywords.
Fill both blanks to increase 'alice' score by 7 in the sorted set 'players'.
ZINCRBY [1] [2] alice
The first blank is the key name 'players'. The second blank is the increment '7'.
Fill all three blanks to increase the score of 'bob' by 4.5 in the sorted set 'game_rankings'.
ZINCRBY [1] [2] [3]
The command syntax is: ZINCRBY key increment member. Here, key='game_rankings', increment='4.5', member='bob'.