Skip to content

jbalogh/django-debug-cache-panel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

A sweet little cache panel for django-debug-toolbar. Displays all commands and keys sent to the cache backend, and records timing. Cache hits are shown in green because they make us happy. It's not very pretty right now. Please help.

Installation

Get it with your pip:

pip install -e git://github.com/jbalogh/django-debug-cache-panel#egg=cache_panel

Then you need to add it to settings.py under DEBUG_TOOLBAR_PANELS:

DEBUG_TOOLBAR_PANELS = (
    '...',
    'cache_panel.CachePanel',
    '...',
)

Since you may be using the default panel settings, here's what the whole thing should look like:

DEBUG_TOOLBAR_PANELS = (
    'debug_toolbar.panels.version.VersionDebugPanel',
    'debug_toolbar.panels.timer.TimerDebugPanel',
    'debug_toolbar.panels.settings_vars.SettingsVarsDebugPanel',
    'debug_toolbar.panels.headers.HeaderDebugPanel',
    'debug_toolbar.panels.request_vars.RequestVarsDebugPanel',
    'debug_toolbar.panels.template.TemplateDebugPanel',
    'debug_toolbar.panels.sql.SQLDebugPanel',
    'debug_toolbar.panels.signals.SignalDebugPanel',
    'debug_toolbar.panels.logger.LoggingPanel',
)

Put 'cache_panel.CachePanel' in there somewhere.

This has been tested with locmem and very briefly with memcached. I didn't see any problems.

About

A sweet little cache panel for django-debug-toolbar

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages