https://github.com/ericflo/django-memcached
This is a very simple reusable app which does one thing: shows you statistics about your currently running memcached instances.
https://github.com/ericflo/django-memcached
Last synced: 10 months ago
JSON representation
This is a very simple reusable app which does one thing: shows you statistics about your currently running memcached instances.
- Host: GitHub
- URL: https://github.com/ericflo/django-memcached
- Owner: ericflo
- License: bsd-3-clause
- Created: 2009-02-05T09:24:09.000Z (over 17 years ago)
- Default Branch: master
- Last Pushed: 2011-10-28T15:56:06.000Z (over 14 years ago)
- Last Synced: 2025-07-26T11:02:57.976Z (11 months ago)
- Language: Python
- Homepage:
- Size: 104 KB
- Stars: 72
- Watchers: 4
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README
- License: LICENSE.txt
Awesome Lists containing this project
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.