I'm building a "spot the diffrence" multiplayer game.
The specifiactions of the game are :
- There can be up to 10 players in each game.
- A user must not see the same picture twice.
(a picture consists of four images and the user must "spot the difference" between them ).
I have a collection of thousands and possibly even tens of thousands of pictures to choose from. The problem I'm facing is an extremely non-eficient and un-scalable method for finding a picture that none of the game players have seen yet.
In my database I have a usage table with the following fields :
- picture_id
- user_id
My current solution is as follows :
User enters game, app selects a picture from the database that does not appear in the usage table for that user, and for each user that enters I run the same function only adding values of pictures that other users in the same game have already seen.
I am concerned that once there is a database of tens of thousands of pictures to choose from, and the usage table is already being filled up by previous games, that the function will simply take too long damaging the flow of the game.
This method is not very scalable and I am expecting quite a steady flow of constant traffic meaning lots of games being played.
Does anyone have any suggestions on how to improve this logic or suggestions for a better database structure?