Contact: fumanchu@aminus.org

Log in as guest/dejavu to create tickets

I think I've seen this ORM somewhere before...

Changeset 37

Show
Ignore:
Timestamp:
12/13/04 05:21:30
Author:
fumanchu
Message:

Added zoo.py, a test application.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/__init__.py

    r36 r37  
    541541 
    542542 
    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. 
    547545dejavuarena = Arena() 
    548546 
  • trunk/doc/framework.html

    r36 r37  
    218218<h4>Other Serialization Mechanisms</h4> 
    219219<h5>shelve</h5> 
    220 <p>This should be dead simple to write. Pickle everything. Querying would 
    221 be slow--just suck every Unit in one-by-one and test it in pure Python 
     220<p>Extremely simple implementation. Everything is pickled. Querying will 
     221be slow--every Unit is sucked in one-by-one and tested in pure Python 
    222222using <tt>Expression.evaluate()</tt>. But for many applications, you don't 
    223223need heavyweight query tools; for example, an online forum may only need 
    224224topic 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> 
     225startup might benefit.</p> 
    227226 
    228227<h5>sockets</h5>