On Sat, 2007-03-17 at 15:17 +0100, Bram - Smartelectronix wrote:
> hey everyone,
> 
> 
> Im our pages we would love to keep a list of "most recent" or perhaps 
> "most incoming in the last 7 days" referrers for quite a few pages... 
> I.e. something like:
> 
> "in the last 7 days your blog/item/whatever has been visited from:
> 7 x http://somewebsite.com
> 5 x http://someotherwebsite.com
> ...
> "
> 
> I was wondering if anyone had any hints on how to do this...
> 
> Should I be thinking Django (and perhaps middleware) or should I be 
> thinking about parsing apache logs via a cron? Mind you, we're talking 
> about > 10000 (popular) pages so performance is a big issue.
> 
> Any hints, help or ideas offered would be superb.

You have access to the full HTTP request in your views (including all
the webserver headers -- if not, it's a bug and there are a couple of
cases where we don't capture a necessary header). So you could extra the
referrer header in each request and store it in a model.

Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to