tags:

views:

10

answers:

1

SQLObject caching is very aggressive for me. Can I prevent one specific class from being cached?

A: 

from the manual:

class MyClass(SQLObject):

    class sqlmeta:
        cacheValues = False

    # column definitions, etc.
ax