Version 5 (modified by Tobias McNulty, 14 years ago) ( diff )

evaluation for django-notify

Session Messages

This page is meant to evaluate some of the different session/cookie message/notification engines out there for potential inclusion in the Django core. It is a work in progress so please contribute (your notification engine here) or other changes as you see fit.

For more information see:

Criteria

Criteria necessary for inclusion in the core:

  • Support message passing for anonymous users
  • Avoid database/cache queries if possible
  • Support larger messages that don't fit in a cookie (> 4kb)
  • Don't lose messages if they're not displayed to the user (lazy message loading)
  • Signs cookie-based messages
  • Provide a standard, intuitive interface so that reusable apps can provide feedback related to the current session
  • Needs community approval/support
  • Needs to be the "de facto" standard implementation

Available Options

Name and LinkAnonymous user supportMinimal DB AccessSupports messages > 4kbLazy loads messagesSigned cookiesStandard interface
django-notifyyesyesyesyesyesyes
Note: See TracWiki for help on using the wiki.
Back to Top