What is the best way to implement the page view counter like the ones they have here on the site where each question has a "Views" counter?
Factoring in Performance and Scalability issues.
|
What is the best way to implement the page view counter like the ones they have here on the site where each question has a "Views" counter? Factoring in Performance and Scalability issues. |
|||
|
|
|
The counter i optimized works like this:
This way you run 2 query for the first view, the other views require only 1 query. |
|||||||||||
|
|
I've made two observations on the stackoverflow views counter:
|
|||||||||||
|
|
An efficient way may be : Store your counters in the Application object, you may persist it to file/DB periodically and on application close. |
|||
|
|
|
Instead of making a database call everytime the database is hit, I would increment a counter using a cache object and depending on how many visits you get to your site every day you have send the page hits to the database every 100th hit to the site. This is waay faster then updating the database on every single hit. Or another solution is analyzing the IIS log file and updating hits every 30min through a windows service. This is what I have implemented and it work wonders. |
|||
|
|
|
I'm a fan of @Guillaume's style of implementation. I use a transparent GIF handler and in-memory queues to batch-up sets of changes that are then periodically flushed using a seperate thread created in global.asax. The handler implements IHttpHandler, processes the request parameters e.g. page id, language etc., updates the queue, then response.writes the transparent GIF. By moving persistent changes to a seperate thread than the user-request you also deal much better with potential serialization issues from running multiple servers etc. Of course you could just pay someone else to do the work too e.g. with transparent gifs. |
|||
|
|
|
For me the best way is to have a field in the question table and update it when the question is accessed
Application Object: IMO is not scalable because the may end with lots of memory consumption as more questions are accessed. |
|||
|