On 6/20/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Well, I 'm implementing a performance counter. This counter will be
> updated everytime someone view our web page.
> So, I don't want to rely on another external system such as database.
> I just want to provide counter to some external monitoring programs.

Best results might be to either:

A) Increment a counter in an accessible cache (memcached is good at
this because it's fast and bindings are available for many languages,
so other applications which know the correct cache key can retrieve
the counter from your cache)
B) Set up a counting service you can ping each time a page is viewed.
This is more complex and more likely to be affected by network
latency, so probably (A) is a better solution.

-- 
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."

--~--~---------~--~----~------------~-------~--~----~
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