Here's my problem: I want to show the user a hash from a random number, then that user has to guess if the number is higher or lower than a certain treshold. After the game, I want to show him the number so he can verify that the number has not changed during play.
But how do I do that? I have thought about using Redis to store the random number and the user id in there, but it seems like there are easier solutions.
Thanks!
Edit: In the end I chose Redis because it's server side only for maximum security and I may find some additional uses for it.