CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sat, 30 Aug 2025 05:53:21 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100221084330
location: https://web.archive.org/web/20100221084330/https://github.com/ericflo/django-memcached
server-timing: captures_list;dur=0.765480, exclusion.robots;dur=0.025883, exclusion.robots.policy;dur=0.011256, esindex;dur=0.013040, cdx.remote;dur=36.045268, LoadShardBlock;dur=590.210170, PetaboxLoader3.resolve;dur=500.321323, PetaboxLoader3.datanode;dur=72.642611
x-app-server: wwwb-app220
x-ts: 302
x-tr: 674
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app220; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sat, 30 Aug 2025 05:53:21 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Sun, 21 Feb 2010 08:43:29 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "1c4c9acbea5b94c533bb2602c108ebf5"
x-archive-orig-x-runtime: 156ms
x-archive-orig-content-length: 22899
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sun, 21 Feb 2010 08:43:30 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Thu, 01 Oct 2009 18:31:00 GMT", ; rel="prev memento"; datetime="Thu, 01 Oct 2009 18:31:00 GMT", ; rel="memento"; datetime="Sun, 21 Feb 2010 08:43:30 GMT", ; rel="next memento"; datetime="Wed, 14 Apr 2010 04:36:54 GMT", ; rel="last memento"; datetime="Tue, 15 Dec 2020 09:50:48 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_14_20100221034838_crawl101-c/51_14_20100221084136_crawl101.arc.gz
server-timing: captures_list;dur=0.722893, exclusion.robots;dur=0.027047, exclusion.robots.policy;dur=0.011042, esindex;dur=0.014575, cdx.remote;dur=5.877266, LoadShardBlock;dur=152.233869, PetaboxLoader3.datanode;dur=182.616472, PetaboxLoader3.resolve;dur=108.292446, load_resource;dur=176.917741
x-app-server: wwwb-app220
x-ts: 200
x-tr: 413
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
ericflo's django-memcached at master - GitHub
This service is courtesy of Pledgie.
ericflo / django-memcached
- Source
- Commits
- Network (3)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
-
Branches (1)
- master ✓
- Tags (0)
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
This is a very simple reusable app which does one thing: shows you statistics about your currently running memcached instances. — Read more

Wil Clouser (author)
Thu Feb 04 16:29:56 -0800 2010
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Thu Feb 05 01:27:54 -0800 2009 | Adding the django_memcached subdir [ericflo] |
![]() |
LICENSE.txt | Thu Feb 05 01:26:29 -0800 2009 | Initial commit [ericflo] |
![]() |
README | Thu Feb 05 01:37:26 -0800 2009 | Updated documentation to be proper ReST format. [ericflo] |
![]() |
django_memcached/ | Mon Feb 08 00:35:09 -0800 2010 | use parse_backend_uri() to get the memcached se... [Wil Clouser] |
![]() |
setup.py | Thu Feb 05 02:09:49 -0800 2009 | Used the setuptools_git requirement to ensure t... [ericflo] |
README
django-memcached ================= This is a very simple reusable app which does one thing: shows you statistics about your currently running memcached instances. There are no database models and not much configuration. Installing django-memcached ---------------------------- 1. Either download the tarball and run ``python setup.py install``, or simply use easy install or pip like so ``easy_install django-memcached``. 2. Add django_memcached to your ``INSTALLED_APPS`` setting:: INSTALLED_APPS = ( # ... 'django_memcached', ) 3. Add the urls to your url configuration:: urlpatterns = patterns('', # ... (r'^cache/', include('django_memcached.urls')), ) 4. If you want to restrict these urls to only staff members, just add this setting to your settings file:: DJANGO_MEMCACHED_REQUIRE_STAFF = True That's it. Hopefully this app gives you a little insight into how your memcached servers are being utilized.