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:
- ASP.NET
- ASP.NET MVC
- SQL Server 2008
- LINQ-to-SQL
- reCAPTCHA (human verification)
- Akismet (spam detection)
- NValidate (might replace with code contracts at some point)
- Microsoft Enterprise Library (specifically the Validation Application Block)
- wmd (editor)
- Markdown.NET (will be heavily modified in the future)
- Microsoft Anti-Cross Site Scripting Library
- RPX (for Open ID/Facebook/Google login support)
