0

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

Michael Petrotta
  • 59,888
  • 27
  • 145
  • 179
Sergej Andrejev
  • 9,091
  • 11
  • 71
  • 108

1 Answers1

1

from the manual:

class MyClass(SQLObject):

    class sqlmeta:
        cacheValues = False

    # column definitions, etc.
ax.
  • 58,560
  • 8
  • 81
  • 72