vote up 11 vote down star
14

I've been looking into implementing a Stackoverflow-like site (for a completely different area of knowledge) for a little bit now, and I have a question on what people think is the best way to implement reputation for a system like this.

Of course, that's a broad topic, so here are some specific questions that I have:

  • Calculation of Reputation

While I do believe that every action the user takes is persisted in some manner (asking/answering a question, voting on a question/answer, being voted on) which would allow reconstruction of a reputation score from scratch, the more I look at the site, the more implausible it seems that is done every time a reputation score is needed.

To that end, I am of the belief that the user's reputation is only calculated once an interval (every day, two days, week, month, etc, etc) and then activity past that interval is added to the pre-calculated score.

If this is indeed the case, does one think that this would be an automated process that occurs once at a specified interval, or is it something that happens the next time the user tries to perform an action which would affect reputation?

My guess is that because other people can have an impact on your reputation, calculating it when you perform an action that affects reputation is a bad idea, unless that operation is performed every time anyone performs an action that affects your reputation.

Or perhaps I have all of this wrong? Since any one action on the site can only really affect one person's reputation at a time, perhaps the reputation is kept as a running tally and changed every time an action is performed?

After all, the only actions that can really affect a users reputation are upvoting, downvoting, and answer acceptance, it wouldn't seem too hard to actually keep a running total.

Thoughts?

  • Permissions Based on Reputation

Given that permissions on the site are reputation-based, and it is a fluid system, if a user wobbles back and forth over a permission-boundary, what happens? Do they gain and then lose the permission?

Also, what are the thoughts on the impact of the above questions in relation to this one?


Solution

Eventually I might go with my/Adam Davis' answer, but I will only use that if scalability is an issue. For now, I believe that updating a running total is the best way. I'll post another question though if I find it is not.


Implementation Details

The platform I am developing for is ASP.NET. Specifically, these are the technologies/components/services involved:

I believe the SO reputation system is miserably broken. I think they have sacrificed accuracy for performance by heavily caching the rep/day and showing off bugs as features and intentional policy. – Mehrdad Afshari Apr 9 at 17:35
What are you developing yours in (platform, language, dependencies, etc)? Will it be open source? Inquiring minds want to know! – Adam Davis Apr 9 at 17:38
@Mehrdad - well, reputation isn't anything important, so accuracy isn't a big deal, but I haven't seen any accuracy problems myself. I'm curious about the second part, though - why shouldn't they set policy by performance requirements? What's inherently bad about that? – Adam Davis Apr 9 at 17:39
@Adam: I didn't mean it'll calculate your reputation incorrectly. I think they haven't really thought about it in terms of revoking votes, timing, revoking accepted answers. I think the fact that the time of getting an accepted answer matters is also a side effect of screwing stuff up. – Mehrdad Afshari Apr 9 at 17:42
... "What's inherently bad about that?" Well, it's not really bad. It just feels a little wrong. Especially for a Website targeted at tech community, I expect a little more polished policy in terms of these stuff. I think shrinkster.com/15y1 pretty much proves the point. – Mehrdad Afshari Apr 9 at 17:45
show 7 more comments

4 Answers

vote up 2 vote down check

Calculation of reputation is best done as you suggest, I believe. SO does something substantially similar - reputations have been recalculated for all users several times in the recent past, which suggests a discrete number that is updated probably daily. Given the reputation graph shows daily changes, they may simply have a rep-per-day table.

The permissions do indeed go away if one loses reputation. Otherwise someone could get just enough reputation to do bad things, and the offensive vote reputation penalty won't act until the next discrete reputation calculation.

link|flag
@Adam Davis: So you are leaning towards the once-per-interval over the running tally method, correct? If so, then the question is, is the recalculation on a fixed interval separate from the user's actions, or tied to another user's next action after a threshold has been breached? – casperOne Apr 9 at 17:38
Once per interval, with the 'real time' score being added to that. How and when it's updated, though, depends on the design of the database and code. – Adam Davis Apr 9 at 17:42
@Adam Davis: What are the costs that I am missing with using a running-tally approach then? Since every action that could influence reputation requires a DB operation, what's the harm in updating one more value? – casperOne Apr 9 at 18:01
You'll have to run some tests yourself. Keep in mind that your "action table" is going to have hundreds of thousands of new actions a day, and running a sum along one affected user ID for the whole table is a lot more expensive than restricting the sum to a time period. – Adam Davis Apr 9 at 18:26
But again, it depends on your DB backend. I doubt my mental model matches your database schema, so I can only guess based on what I know. If you are simply updating a single record per user each time the rep changes, then that would certainly be fast enough. – Adam Davis Apr 9 at 18:27
show 1 more comment
vote up 1 vote down

I am trying to also create a stackoverflow app (open source). I thought about the "once in a time update", but it isn't working. Except for rep gained by accepting one of your answers.
You will also notice that your rep changes immediately (by two) when you accept answers of others.
The reason why such stuff has to be real time is:
1. Prevent spammers (You need them to receive penalty immediately and not several minutes after they do what they intended to do.
2. If you upvote someone, you still have to save this action somewhere, so why not where it should be saved from the beginning?

link|flag
@Itay Moav: Curious, how far along are you in your implementation? – casperOne Apr 9 at 18:16
Somewhere in the middle, check for yourself: phpancake.sourceforge.net/demo Not too much time (two kids and wife to feed :-D ) – Itay Moav Apr 9 at 18:23
@Itay Moav: You are definitely further along than I am. Do you have spam/captcha installed? Also, it's in PHP? If it was in .NET, I'd suggest combining forces! – casperOne Apr 9 at 18:39
dot net, you might want to check ra-ajax, they have a dot net opensource version of SO. I am just now beginning to think on the most none intrusiveness ways to protect my site (see my latest question, it is general, can help you too). – Itay Moav Apr 9 at 18:44
@Itay Moav: I've seen it, but I found it to be too different from the SO model in certain areas and I didn't want to hack apart someone else's code. Additionally, there doesn't seem to be anything regarding spam or human verification in there (I might have missed it) and that's a major concern. – casperOne Apr 9 at 19:05
vote up 0 vote down

One thing that comes to mind is a ranking system that uses the logarithmic scale. Sites like CodeProject use it. For example, on CP, the article's rating is average vote times log_10 of the number of votes. This means that masses of people liking something only tilt the scale so much. I like it.

link|flag
@Dmitri Nesteruk: And where is this ranking applied? Is it applied to the user, or is it applied to order search results, perhaps? I like the idea, but I need more information on where the ranking would be applied. – casperOne Apr 9 at 17:58
@Dmitri Nesteruk: If it IS applied to the user, then one has to think about how reputation is calculated across the board, and that might be a task I'm not keen on taking up. – casperOne Apr 9 at 17:59
vote up 0 vote down

If you decide to do a daily reputation and vote cap, you should give people the option to set when there "day" starts. On SO, the start of the day can be in the middle of a user's day. As others have said, you should probably use a logarithmic scale for each post.

link|flag
@Zifre: I don't think that's a good idea, because then you are going to overload the system trying to run automated processes on the user's time. Also, it gives them input into the processing of the system which isn't really fair. Also, SO has indicated that start-of-day is 00:00 GMT – casperOne Apr 9 at 18:19
It possibly lends itself to gaming problems as well. – Adam Davis Apr 9 at 18:29
You could prevent gaming by only allowing users to change the setting for the next day, extending the current day until the next start of their day. And you could have only 4-6 automated processes, which should cover anyone's night. – Zifre Apr 9 at 22:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.