How to mange multiple users playing with your alexa skill at the same time?, I know session can store the game score of one user when he starts playing. But what if one more user plays at the same time. How session can manage it? How can I code is such a way that it can manage multiple user sessions in alexa game skill?
eg: userA, userB playing this game skill at the same time from two alexa devices. user A got 10 points in score attribute (sessionAttributes.Score = 10) , user B got 20 points (sessionAttributes.Score = 20) in the same score attribute. Now the game crashes for both users when they continue playing!
How to mange this scenario?