
How do Stack Exchange sites track visited and consecutive days? I would like to know how you would go about designing something like this.
|
How do Stack Exchange sites track visited and consecutive days? I would like to know how you would go about designing something like this. |
||||
|
|
|
There is a log stored in the database that keeps track of the days you visit the site (probably with some other information, too). I believe diamond mods have read-only access to the log data for each user account. Once you have a set of data that represents the days you've visited, then it's trivial to derive statistics about that data set, such as the longest streak you've visited consecutively, or how many days you've visited in total. In the case of this site, these derived statistics are most likely denormalized to a user account field for performance reasons. You may not necessarily have to go that far in your application. |
|||||||
|
|
Maybe just with a database table like
and it's easy to update each of the three fields when a user logs in. EDIT: ( |
||||
|
|