With WebAlchemy only pages involved in form processing are served
directly by Django, the rest of the pages most of the time are served
directly by Apache as static content with static content speed. In
other words for Django-powered site it's possible to achieve speed
about 2000 request/sec, against about 500 request/sec with memcached
and about 20 request/sec for "typical" (10 fast SQL queries) page
without caching at all. Actual performance results of course will vary
from server/application/configuration.

As it was said "there are only two hard things in Computer Science:
cache invalidation and naming things". WebAlchemy radically resolves
the problem of stalled resources in cache that is natural for any
caching layer based on memcached, squid or etc. With WebAlchemy pages
are never become staled.

The magic is done inside concept.webalchemy.core.WebAlchemyMiddleware:
http://www.mysoftparade.com/blog/webalchemy-django-apache/

--
Dima Dogadaylo,
http://www.mysoftparade.com/
--~--~---------~--~----~------------~-------~--~----~
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