On Sun, May 17, 2009 at 10:29 AM, Oleg Oltar <oltarase...@gmail.com> wrote:

> Well, what I want is t implement voting application, so my users can see
> article, vote for it and see the vote displayed
> So I want to show in template: this page was viewed 100 times, and has 10
> votes for example
>
> how can I get those numbers
>
>

views.py:

def vote_detail(request, id):
  obj = get_object_or_404(Voter, pk = id)
  obj.page_count += 1
  obj.save()
  return render_to_response('your/template.html', { 'object' : obj })


This won't be able to be optimized however. Every pageview has to hit the
database (2 times in the example I have given) and you can not cache this if
you want an accurate count.

This might not be a problem for you, but what Antoni has said about
Google Analytics or another analytics program is valid. Analytics is
notoriously intensive on databases just by its nature. Google Analytics is
set up to deal with this with thousands of servers. Google Analytics has an
API now that I think could be used to accomplish this same style of thing
(not really sure, haven't gotten a chance to mess with it).

I hope that helps,

Michael

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to