Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
453 views
in Technique[技术] by (71.8m points)

asp.net - Page View Counter like on StackOverFlow

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I've made two observations on the stackoverflow views counter:

  • There's a link element in the header that handles triggering the count update. For this question, the markup looks like this:
    <link href="/questions/246919/increment-view-count" type="text/css" rel="stylesheet" />
    I imagine you could hit that url to update the viewcount without ever actually viewing the page, but I haven't tried it.

  • I had a uservoice ticket, where the response from Jeff indicated that views are not incremented from the same ip twice in a row.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...