Am Samstag, 7. Oktober 2006 18:47 schrieb Martin Winkler: > 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
Hi Martin, agreed, in a perfect world i would parse the log files. But sometimes you don't have access to a cron daemon. Basically i'm trying to get a better idea of how Django works (still pretty new to me), and in this case, how to react on a request. The count was just the first example that came to my mind. :) Anyway, thanks for the pointer to part 4 of the tutorial. I had to re-read it and think i got it now. Best Regards, Dirk Eschler -- Dirk Eschler <mailto:[EMAIL PROTECTED]> http://www.krusader.org --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---