Changeset 37
- Timestamp:
- 12/13/04 05:21:30
- Files:
-
- trunk/__init__.py (modified) (1 diff)
- trunk/doc/framework.html (modified) (1 diff)
- trunk/zoo.py (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/__init__.py
r36 r37 541 541 542 542 543 # You can use this arena instance if you are 544 # deploying a single application per process. 545 # Otherwise, you should create your own instance 546 # per application. 543 # Use this arena instance if you are deploying a single application per 544 # process. Otherwise, you should create your own instance per application. 547 545 dejavuarena = Arena() 548 546 trunk/doc/framework.html
r36 r37 218 218 <h4>Other Serialization Mechanisms</h4> 219 219 <h5>shelve</h5> 220 <p> This should be dead simple to write. Pickle everything. Querying would221 be slow-- just suck every Unit in one-by-one and test itin pure Python220 <p>Extremely simple implementation. Everything is pickled. Querying will 221 be slow--every Unit is sucked in one-by-one and tested in pure Python 222 222 using <tt>Expression.evaluate()</tt>. But for many applications, you don't 223 223 need heavyweight query tools; for example, an online forum may only need 224 224 topic content looked up by ID. Or system tables that only get read at 225 startup might benefit. Having a shelve Storage Manager would give 226 flexibility to deployers.</p> 225 startup might benefit.</p> 227 226 228 227 <h5>sockets</h5>
