Hi Nitai, Thank you for your input. We are currently not using CACHENAME or CACHEDOMAIN attributes, so queries are cached "the old fashioned way" - based on the query string etc.
internalCacheName = CacheFactory.createCacheKey(serverName + queryString + ((preparedDataList != null) ? preparedDataList.hashCode() : 0) + thisDataSource.getUsername() + thisDataSource.getPassword() + thisDataSource.getDataSourceName()); Using CACHENAME and CACHEDOMAIN would likely solve this problem, but it would be nice keeping the code as close to ColdFusion specs as possible. We don't flush queries - we expire them using dynamic variables that are included in the queries and updated as sections are updated. Sort of a poor man's CACHEDOMAIN Jari On Wednesday, September 21, 2011 12:35:02 PM UTC+3, Nitai @ Razuna wrote: > > Hi Jari, > > We are using cache and cache domain in our product intensely and don't > see any issue at all. You might want to look into your naming scheme > for those caches. Also how to apply a flush. > > Just an opinion. > > Kind Regards, > Nitai > > On Wed, Sep 21, 2011 at 11:15 AM, Jari Ketola <[email protected]> wrote: > > Any ideas/suggestions on how to overcome this problem? We are seeing this > > constantly on a number of queries when doing performance testing. > > > > Jari > > > > -- > > official tag/function reference: http://openbd.org/manual/ > > mailing list - http://groups.google.com/group/openbd?hl=en > > > > -- > See for yourself how easy it is to manage files today. Join the revolution! > > Razuna - Hosted Digital Asset Management Solution > http://www.razuna.com/ > > Razuna - Open Source Digital Asset Management > http://www.razuna.org/ > > Twitter - http://twitter.com/razunahq > Facebook - http://www.facebook.com/razunahq > Support Platform - http://getsatisfaction.com/razuna > > -- official tag/function reference: http://openbd.org/manual/ mailing list - http://groups.google.com/group/openbd?hl=en
