[web2py] SQLite serialization

2010-02-09 Thread Jonathan Lundell
I've got an application that makes very limited use of the database. No self-registration, and the only other table is a relatively static configuration table. So for convenience, I'd just as soon stick with SQLite for simplicity and self-containedness. So two questions, I guess. 1. Would

Re: [web2py] SQLite serialization

2010-02-09 Thread Thadeus Burgess
Take a look at my configure class in Blogitizor. It gives a class interface to a settings table, and will cache the results in ram, the only thing it misses is clearing out the cache when a setting changes http://code.google.com/p/blogitizor/source/browse/src/modules/utils.py You can take a look