← Back to team overview

launchpad-dev team mailing list archive

Re: caching in model objects: please read

 

On Tue, Aug 17, 2010 at 2:25 AM, Robert Collins
<robert.collins@xxxxxxxxxxxxx> wrote:
> On Tue, Aug 17, 2010 at 3:16 AM, Julian Edwards
> <julian.edwards@xxxxxxxxxxxxx> wrote:
>> On Monday 16 August 2010 12:11:39 Robert Collins wrote:
>>> In SQLBase classes, do not write __storm_invalidation__ hooks anymore:
>>> just use cachedproperty, and its all taken care of for you. If you
>>> do write a hook, be sure to upcall, or else cachedproperty caches
>>> won't be cleared.
>>>
>>> If you are writing pure storm without SQLBase, either don't use
>>> cachedproperty at all, or call clear_cachedproperties(self) in a storm
>>> invalidation hook.
>>
>> Do you think it's a good use of our time to finally convert all our old-style
>> model classes into pure Storm so we don't have this (and probably other)
>> inconsistencies to have to remember?
>
> I don't know. I wonder if perhaps we still want a base class with
> things like this invalidation hook pre-baked into it, and if so, isn't
> SQLBase an ok base class? we can use storm syntax on top of it, after
> all.

There are differences in behavior, and some of those differences are
what drove us to switch to Storm in the first place. I don't recall
concrete examples though. I think it is mainly that they return
SQLObjectResultSet objects which have a quite different interface to
ResultSet objects.


-- 
Stuart Bishop <stuart@xxxxxxxxxxxxxxxx>
http://www.stuartbishop.net/



References