I am trying to implement a page view system in my own website and I came up with some scenarios that led me to question why SO does it the way does.
Unless I am mistaken, I am under the assumption that SO has a "views" table that logs the postIp/userId or postId/IPAddress. There is also a viewCount column in the post table. I am aware that denormalizing this will allow faster reads when trying to read many questions. But it seems to me that the cost of denormalizing viewCount is very high. I must be wrong because people at SO know better than I do. But, assuming page views are stored as described above, you would do the following on every page request:
- Insert a new "view" record in the views table.
- Update the viewCount column in the original post.
That's one query to insert and one query to update. Is this more optimal than reading from a normalized relationship? Or am I reading too much into the data dump schema?
Thanks!