For stackoverflow.com there is a stat for how many views for a question.
How is it tracked? Registered and unregistered user can view any question.
What is the database relation schema for that counting?
Should i just increment the column value for a specific question in database table?
Or should i add a new record/row when an user views that question, then to display the count echo the result of sum(thatcolumn) of that table?