I'm new to game server development. I'm I'm facing this issue : I
I want to develop a cardscard game server, but I'm not sure about the solution to hold the game data while playing.
Example : In a poker game, when a player domakes a move, the server will process the request and send it to all other players. But how will the game server know what'swhat the current state of the game is to do nextsubsequent actions? Should I save all moves into database and server will look into it to know the current state ?
Thanks for help.