sqlobject.cache module

This implements the instance caching in SQLObject. Caching is relatively aggressive. All objects are retained so long as they are in memory, by keeping weak references to objects. We also keep other objects in a cache that doesn’t allow them to be garbage collected (unless caching is turned off).

class sqlobject.cache.CacheFactory(cullFrequency=100, cullFraction=2, cache=True)[source]

Bases: object

CacheFactory caches object creation. Each object should be referenced by a single hashable ID (note tuples of hashable values are also hashable).

allIDs()[source]

Returns the IDs of all objects in the cache.

clear()[source]

Removes everything from the cache. Warning! This can cause duplicate objects in memory.

created(id, obj)[source]

Inserts and object into the cache. Should be used when no one else knows about the object yet, so there cannot be any object already in the cache. After a database INSERT is an example of this situation.

cull()[source]

Runs through the cache and expires objects

E.g., if cullFraction is 3, then every third object is moved to the ‘expired’ (aka weakref) cache.

expire(id)[source]

Expires a single object. Typically called after a delete. Doesn’t even keep a weakref. (@@: bad name?)

expireAll()[source]

Expires all objects, moving them all into the expired/weakref cache.

finishPut()[source]

Releases the lock that is retained when .get() is called and returns None.

get(id)[source]

This method can cause deadlocks! tryGet is safer

This returns the object found in cache, or None. If None, then the cache will remain locked! This is so that the calling function can create the object in a threadsafe manner before releasing the lock. You should use this like (note that cache is actually a CacheSet object in this example):

obj = cache.get(some_id, my_class)
if obj is None:
    try:
        obj = create_object(some_id)
        cache.put(some_id, my_class, obj)
    finally:
        cache.finishPut(cls)

This method checks both the main cache (which retains references) and the ‘expired’ cache, which retains only weak references.

getAll()[source]

Return all the objects in the cache.

put(id, obj)[source]

Puts an object into the cache. Should only be called after .get(), so that duplicate objects don’t end up in the cache.

tryGet(id)[source]

This returns None, or the object in cache.

class sqlobject.cache.CacheSet(*args, **kw)[source]

Bases: object

A CacheSet is used to collect and maintain a series of caches. In SQLObject, there is one CacheSet per connection, and one Cache in the CacheSet for each class, since IDs are not unique across classes. It contains methods similar to Cache, but that take a cls argument.

allIDs(cls)[source]
allSubCaches()[source]
allSubCachesByClassNames()[source]
clear(cls=None)[source]
created(id, cls, obj)[source]
expire(id, cls)[source]
finishPut(cls)[source]
get(id, cls)[source]
getAll(cls=None)[source]

Returns all instances in the cache for the given class or all classes.

put(id, cls, obj)[source]
tryGet(id, cls)[source]
tryGetByName(id, clsname)[source]
weakrefAll(cls=None)[source]

Move all objects in the cls (or if not given, then in all classes) to the weakref dictionary, where they can be collected.