hot questions tagged leaderboard - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T02:35:21Z http://stackoverflow.com/feeds/tag?tagnames=leaderboard&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1628562/real-time-update-of-relative-leaderboard-for-each-user-among-friends 0 Real time update of relative leaderboard for each user among friends Aneto 2009-10-27T03:07:08Z 2009-10-27T19:18:14Z <p>Ive been working on a feature of my application to implement a leaderboard - basically stack rank users according to their score. Im currently tracking the score on an individual basis. My thought is that this leaderboard should be relative instead of absolute i.e. instead of having the top 10 highest scoring users across the site, its a top 10 among a user's friend network. This seems better because everyone has a chance to be #1 in their network and there is a form of friendly competition for those that are interested in this sort of thing. Im already storing the score for each user so the challenge is how to compute the rank of that score in real time in an efficient way. Im using Google App Engine so there are some benefits and limitations (e.g., IN [array]) queries perform a sub-query for every element of the array and also are limited to 30 elements per statement</p> <p>For example</p> <p>1st Jack 100 </p> <p>2nd John 50 </p> <p>Here are the approaches I came up with but they all seem to be inefficient and I thought that this community could come up with something more elegant. My sense is that any solution will likely be done with a cron and that I will store a daily rank and list order to optimize read operations but it would be cool if there is something more lightweight and real time</p> <ol> <li>Pull the list of all users of the site ordered by score. For each user pick their friends out of that list and create new rankings. Store the rank and list order. Update daily. Cons - If I get a lot of users this will take forever</li> </ol> <p>2a. For each user pick their friends and for each friend pick score. Sort that list. Store the rank and list order. Update daily. Record the last position of each user so that the pre-existing list can be used for re-ordering for the next update in order to make it more efficient (may save sorting time)</p> <p>2b. Same as above except only compute the rank and list order for people who's profiles have been viewed in the last day Cons - rank is only up to date for the 2nd person that views the profile</p> http://stackoverflow.com/questions/1391601/django-how-to-create-a-leaderboard 4 Django: How to create a leaderboard Paul Tarjan 2009-09-08T01:58:50Z 2009-09-08T19:14:35Z <p>Lets say I have around 1,000,000 users. I want to find out what position any given user is in, and which users are around him. A user can get a new achievement at any time, and if he could see his standing update, that would be wonderful.</p> <p>Honestly, every way I think of doing this would be horrendously expensive in time and/or memory. Ideas? My closest idea so far is to order the users offline and build percentile buckets, but that can't show a user his exact position.</p> <p>Some code if that helps you django people :</p> <pre><code>class Alias(models.Model) : awards = models.ManyToManyField('Award', through='Achiever') @property def points(self) : p = cache.get('alias_points_' + str(self.id)) if p is not None : return p points = 0 for a in self.achiever_set.all() : points += a.award.points * a.count cache.set('alias_points_' + str(self.id), points, 60 * 60) # 1 hour return points class Award(MyBaseModel): owner_points = models.IntegerField(help_text="A non-normalized point value. Very subjective but try to be consistent. Should be proporional. 2x points = 2x effort (or skill)") true_points = models.FloatField(help_text="The true value of this award. Recalculated with a cron job. Based on number of people who won it", editable=False, null=True) @property def points(self) : if self.true_points : # blend true_points into real points over 30 days age = datetime.now() - self.created blend_days = 30 if age &gt; timedelta(days=blend_days) : age = timedelta(days=blend_days) num_days = 1.0 * age.days / blend_days r = self.true_points * num_days + self.owner_points * (1 - num_days) return int(r * 10) / 10.0 else : return self.owner_points class Achiever(MyBaseModel): award = models.ForeignKey(Award) alias = models.ForeignKey(Alias) count = models.IntegerField(default=1) </code></pre> http://stackoverflow.com/questions/25999/secure-online-highscore-lists-for-non-web-games 5 Secure Online Highscore Lists for Non-Web Games LKM 2008-08-25T13:10:37Z 2008-09-28T08:15:04Z <p>I'm playing around with a native (non-web) single-player game I'm writing, and it occured to me that having a daily/weekly/all-time <strong>online highscore list</strong> (think Xbox Live Leaderboard) would make the game much more interesting, adding some (small) amount of community and competition. However, I'm afraid people would see such a feature as an invitation to hacking, which would discourage regular players due to impossibly high scores.</p> <p>I thought about the obvious ways of preventing such attempts (public/private key encryption, for example), but I've figured out reasonably simple ways hackers could circumvent all of my ideas (extracting the public key from the binary and thus sending fake encrypted scores, for example).</p> <p>Have you ever implemented an online highscore list or leaderboard? Did you find a reasonably hacker-proof way of implementing this? If so, how did you do it? What are your experiences with hacking attempts?</p>