durusmail: durus-users: Re: ComputedAttribute
Re: ComputedAttribute
2005-09-08
2005-09-09
2005-09-10
2005-09-10
Re: ComputedAttribute
Michael Watkins
2005-09-10
* 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))

reply