On Fri, Aug 23, 2013 at 9:46 AM, James Ivan Pilapil <[email protected]>wrote:
> im maing a ranking game system website and i already build my website but > how can i add the games and rank them according to the number of > visits/downloads?? > > Ranking according to the number of visits is easy, just use a sharded counter system. Here's an article from Google: https://developers.google.com/appengine/articles/sharding_counters By "add the games" I assume you mean store data in the datastore, then show it within a simple page. If that's what you mean, you can see the Guestbook example for a way to take data into forms, store it, then display it: https://developers.google.com/appengine/docs/java/gettingstarted/usingjsps ----------------- -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.
