My app implements an activity stream for different types of activities. One of the activity types is related to the different virtual currency a user can accumulate. For example, a user can accumulate "Points" for posting a comment, voting on a topic, etc. If I were to do no filtering or aggregating, you would get a lot of self-generating spam over the course of a mere hour, for example:
- Earned 5 points for commenting (total points = 505)
- Earned 10 points for voting (total points = 515)
- Earned 5 points for commenting (total points = 520)
- Earned 5 points for commenting (total points = 525)
- Earned 5 points for commenting (total points = 530)
- Earned 10 points for voting (total points = 540)
- Earned 10 points for voting (total points = 550)
- Earned 10 points for voting (total points = 560)
- ...
- ...
- ...
How would you go about preventing this potential for self-generating spam but also present the stream of activities in such a way that invites your friends to see what you've been doing?
