Ignore:
Timestamp:
Aug 23, 2011, 8:38:09 PM (13 years ago)
Author:
rick
Message:
  • Caches are now fully-file based as memcached was not working well with large entries (like images).
  • OSM django proxy is way to slow, rewrite to use apache balanced proxy members.
  • Use HTTPD mod_cache to cache heavy image generation work.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/django_gheat/wlheatmap/osm_proxy.py

    r9398 r9549  
    1616
    1717# Create your views here.
    18 @cache_page(60 * 60 * 24 * 7, key_prefix="osm_proxy")
     18@cache_page(60 * 60 * 24 * 7, cache="osm_proxy")
    1919def osm_proxy(request,zoom,x,y):
    2020  mirror = random.choice(['a','b','c'])
Note: See TracChangeset for help on using the changeset viewer.