[Answer]-Using the same cache for two sites

1👍

You’re using the Local memory cache which means that the cache data is restricted to whatever process is serving your site. If you want to share cache data between different sites, you’ll need to use something like memcached or file-system caching.

Leave a comment