Search code examples
unity-game-engineserverphotonsmartfoxserver

Photon or Smartfox for a quiz game with Unity


I'm starting a new project and it's a quiz, which be written with Unity.

Right now, i have to make a choice between Smartfox and Photon. One of the requirements is to contain a database with questions and answers for the quiz. I ask to share experience, and help to make the right decision)).

Which of the two tools would you recommend?


Solution

  • I will go for smartfoxserver, as it is the leading multiplayer server and a very sophisticated server side java api as well. You can write your algorithms and turn based logic on server that way it will be secure, robust and manageable and will be called through extensions calls from client side.

    You can find many examples on their website, with server side extensions introduction and details as well. And a very good helping community forum.

    For questions and answers that will be stored in a database. One of the best thing with smartfoxserver is, it can connect to database and than it will be a local access to database and you can execute queries and call stored procedures directly from server side API and manipulate results in just next line. Make it more secure and flexible.

    Also your questions will be coming from server directly which is connected to your database. No need to handle API calls on client side.

    It is a perfect scenario for multiplayer quiz game.

    Hope it helps !