Hi,

> In my model i have an IntegerField called "count". What would be a
> good way to increment the post with post_id=1 when someone 
> accesses "http://www.mysite.com/news/1";? Resp. where do i put my code?

I can see here two issues:
It's generally a bad idea to update anything in the database without a
POST form. (see tutorial 4, "vote()" function)

Second, you do a database-update whenever an anonymous user views a
page - this can be a major performance issue.

Why don't you run a cronjob asynchronously - say: once every hour or
day, that checks your webserver's access log and updates all relevant
numbers in one session?

just my 2eurocents,

Martin

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to