Concept Flow - ZINCRBY for score updates
Start with Sorted Set
Call ZINCRBY with key, increment, member
Check if member exists in Sorted Set
Yes No
Increase score
Update Sorted Set with new score
Return new score of member
End
ZINCRBY updates the score of a member in a sorted set by adding the increment. If the member does not exist, it is added with the increment as its score.