* David Binger wrote [2005-09-09 09:19:37 -0400]:
> Is Connection.shrink() removing the ComputedAttribute directly?
> If so, you might get better results by increasing the Connection
> cache size.
Also related to cache... dulcinea.site_utils has a little bug in it - the
default argument is never used.
def get_cache_size(site=None, default=10000):
return int(get_config_value('cache_size', fallback=10000, site=site))
should be:
def get_cache_size(site=None, default=10000):
return int(get_config_value('cache_size', fallback=default, site=site))