トリガーで変更した値を反映させるには、flush()+invalidate()

stormの話。

def invalidate(self, obj=None):

Set an object or all objects to be invalidated.

This prevents Storm from returning the cached object without first verifying that the object is still available in the database.

This should almost never be called by application code; it is only necessary if it is possible that an object has disappeared through some mechanism that Storm was unable to detect, like direct SQL statements within the current transaction that bypassed the ORM layer. The Store automatically invalidates all cached objects on transaction boundaries.

http://twistedmatrix.com/users/radix/storm-api/storm.store.Store.html#invalidate

これだけじゃ、ダメで、

    store.flush()
    store.invalidate()

とした後で使わないと、データベースとstorm.storeの同期が取れていない状況になる。

トリガーでバリバリとStormの知らないところでデータを変更していると、わかりにくいエラーになってしまう。

ちなみに、更新後にstore.commit()を発行していればこういう問題は起きない。

ユニットテストでロールバックしながら繰り返しテストしていてはまった。

SQLAlchemyでも同じだよなあ。後で調べる。