This means, that if a visitor visits my site, with danish language enabled - the panels cache, caches the danish editions of the panes - and thus it shows danish content to visitors with english choice chosen.

IMHO it should add the selected country to the memcache key used, to identify the cache - so it has a seperate cache pr. language.

If you can point me to where this is done - I'll see if I can figure out how to add it.

Comments

crea’s picture

Well honestly I don't recommend anyone running this module on production atm. It's very likely it will be partly rewritten because Namespice module will become obsolete. I'll keep this bug open as reminder, so that I will fix it in the process of rewrite.

If you can point me to where this is done - I'll see if I can figure out how to add it.

In the module code find strings like "cache_get", "cache_set", "cache_clear". This should give you enough information.

klavs’s picture

I'll just do it the way views does it. (you can see it in views/includes/cache.inc

then I only have to figure out why the views-cache-get (and probably panels equivalent) is called so many times on a single page-view :(

Thank for the hint.