On Thu, Jun 2, 2016 at 5:22 PM, Paul Kraus <[email protected]> wrote:
> I also though maybe it was still writing something to cache on disk and > searched everywhere and found nothing. > It might be, search for where cache_dir in your .ini file points to. If it exists, you might want to clear that directory, it's where beaker saves caches to disk. > Even if it is cached shouldn't the results be cached and not the DBURL? > I never checked this, but as you are caching objects bound to a session, when the object it's pickled the session will probably be too with connection details. One easy way to check this is by changing the cache key, jut use cats_%s % datetime.date.month instead of just datetime.date.month as the cache and will confirm if it's the cache or not :D -- You received this message because you are subscribed to the Google Groups "TurboGears" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/turbogears. For more options, visit https://groups.google.com/d/optout.

