-
Notifications
You must be signed in to change notification settings - Fork 57
Home
dound edited this page Sep 14, 2010
·
31 revisions
gae-sessions provides a fast, lightweight Sessions middleware for Google App Engine using memcache+datastore for Python. See the readme for more information about the project and how to use it.
- Added support for cleaning up expired sessions from the datastore.
- Enhanced demo with an example of a cronjob which can use the provided function to remove expired sessions daily.
- Fix regression in v0.04 which caused the datastore to never be used (oops).
- Added support for “quick” methods which only save changes to memcache (avoiding a datastore put).
- Added a new demo which uses Google Accounts for authentication.
- The original demo now works regardless of what port the development server is running on.
- Cleanly handle any db.delete() failure (could occur if the datastore goes into read-only mode, etc.)
- Fixed
Issue #1: A license is now specified (Apache License v2).
- Initial Beta Release