1 | Metadata-Version: 1.0 |
---|
2 | Name: Beaker |
---|
3 | Version: 1.4 |
---|
4 | Summary: A Session and Caching library with WSGI Middleware |
---|
5 | Home-page: http://beaker.groovie.org |
---|
6 | Author: Ben Bangart, Mike Bayer, Philip Jenvey |
---|
7 | Author-email: ben@groovie.org, pjenvey@groovie.org |
---|
8 | License: BSD |
---|
9 | Description: Cache and Session Library |
---|
10 | +++++++++++++++++++++++++ |
---|
11 | |
---|
12 | About |
---|
13 | ===== |
---|
14 | |
---|
15 | Beaker is a web session and general caching library that includes WSGI |
---|
16 | middleware for use in web applications. |
---|
17 | |
---|
18 | As a general caching library, Beaker can handle storing for various times |
---|
19 | any Python object that can be pickled with optional back-ends on a |
---|
20 | fine-grained basis. |
---|
21 | |
---|
22 | Beaker was built largely on the code from MyghtyUtils, then refactored and |
---|
23 | extended with database support. |
---|
24 | |
---|
25 | Beaker includes Cache and Session WSGI middleware to ease integration with |
---|
26 | WSGI capable frameworks, and is automatically used by `Pylons |
---|
27 | <http://pylonshq.com/>`_. |
---|
28 | |
---|
29 | |
---|
30 | Features |
---|
31 | ======== |
---|
32 | |
---|
33 | * Fast, robust performance |
---|
34 | * Multiple reader/single writer lock system to avoid duplicate simultaneous |
---|
35 | cache creation |
---|
36 | * Cache back-ends include dbm, file, memory, memcached, and database (Using |
---|
37 | SQLAlchemy for multiple-db vendor support) |
---|
38 | * Signed cookie's to prevent session hijacking/spoofing |
---|
39 | * Cookie-only sessions to remove the need for a db or file backend (ideal |
---|
40 | for clustered systems) |
---|
41 | * Extensible Container object to support new back-ends |
---|
42 | * Cache's can be divided into namespaces (to represent templates, objects, |
---|
43 | etc.) then keyed for different copies |
---|
44 | * Create functions for automatic call-backs to create new cache copies after |
---|
45 | expiration |
---|
46 | * Fine-grained toggling of back-ends, keys, and expiration per Cache object |
---|
47 | |
---|
48 | |
---|
49 | Documentation |
---|
50 | ============= |
---|
51 | |
---|
52 | Documentation can be found on the `Official Beaker Docs site |
---|
53 | <http://beaker.groovie.org/>`_. |
---|
54 | |
---|
55 | |
---|
56 | Source |
---|
57 | ====== |
---|
58 | |
---|
59 | The latest developer version is available in a `Mercurial repository |
---|
60 | <http://bitbucket.org/bbangert/beaker/get/tip.gz#egg=Beaker-dev>`_. |
---|
61 | |
---|
62 | Keywords: wsgi myghty session web cache middleware |
---|
63 | Platform: UNKNOWN |
---|
64 | Classifier: Development Status :: 5 - Production/Stable |
---|
65 | Classifier: Environment :: Web Environment |
---|
66 | Classifier: Intended Audience :: Developers |
---|
67 | Classifier: License :: OSI Approved :: BSD License |
---|
68 | Classifier: Programming Language :: Python |
---|
69 | Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content |
---|