On Tue, Nov 5, 2013 at 9:05 AM, Weilies Chok <[email protected]> wrote:
> Reason i am interesting in it, is expecting by learning this, it allow me > to store my game data into google (e.g. Datastore in AppEngine) > Sooner, i was confused... > > - Datastore was just a cache? (memcache), i was expecting to store > members (who signup my mobile game) > > Memcache and datastore are two different services. Memcache is a low-latency place to temporarily put data in; however, it's unreliable and can be emptied at any time. The datastore is where you store data. On Tue, Nov 5, 2013 at 9:05 AM, Weilies Chok <[email protected]> wrote: > > > - AppEngine vs Compute Engine (are they the same?) > > No, these are different services. App Engine hosts Java/PHP/Python/Go applications, where Compute Engine is where you can rent computers to host whatever you want. If you're a newbie to this, I suggest you stay with App Engine. Compute Engine is intended for more experienced users. On Tue, Nov 5, 2013 at 9:05 AM, Weilies Chok <[email protected]> wrote: > > > - DataStore vs Cloud DataStorage > > Do you mean the datastore versus the Cloud Datastore offering? Basically the same thing. The only difference is that the Cloud Datastore service makes the App Engine datastore available to external applications. If you're hosting on App Engine, you don't need to concern yourself with the difference. On Tue, Nov 5, 2013 at 9:05 AM, Weilies Chok <[email protected]> wrote: > > > - Cloud DataStorage, GQL & BigQuery > > GQL is a language to query the datastore - it's syntactically similar to SQL, but with certain differences. BigQuery is an entirely different product. It allows users to query extremely large datasets. On Tue, Nov 5, 2013 at 9:05 AM, Weilies Chok <[email protected]> wrote: > All i need from the web app (client-server) is to > > - Store member signup to my game > - Store game items, scores, preferences, game data (so gamer can login > same game in different devices) > - Server API as Publish-Subscribe (e.g. PubNub) for multiplayer mobile > game (look for cheaper solution from Google) > > > Could any one provide me the pointer? which product i should go for? they > all sound similar > > Use the mobile backend starter: https://developers.google.com/cloud/samples/mbs/ It's an easy way to store data from multiple clients, such as a game. ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
