sadams101 Posted October 7, 2020 Posted October 7, 2020 Understood, but I wonder if you could not simply create an "Experimental Settings" tab with ample warnings and detailed descriptions on each setting. I've been running your software for 15 years and still don't understand some of the stuff hidden in init.php. These settings may be helpful to more people if only they could access them. seotune and sobrenome 2
sobrenome Posted January 16, 2021 Posted January 16, 2021 (edited) On 9/21/2020 at 10:30 AM, bfarber said: define( 'OUTPUT_CACHE_METHOD', 'Redis' ); // Store guest pages in Redis Is this the best option for performance? I am using redis already for all the other cache settings available on AdminCP. Edited January 16, 2021 by sobrenome
bfarber Posted January 18, 2021 Posted January 18, 2021 There are several factors at play so I can't say "yes" or "no" without qualifying the answer. You may wish to try it out to see if it performs the best in your case in any event. sobrenome 1
sobrenome Posted January 19, 2021 Posted January 19, 2021 I am using it and the website feels faster. But I have not made any speed test notes, it is just a subjective perception. Thanks!
balazsp Posted February 6, 2021 Posted February 6, 2021 On 9/21/2020 at 11:30 PM, bfarber said: define( 'OUTPUT_CACHE_METHOD', 'Redis' ); // Store guest pages in Redis define( 'STORE_METHOD', 'Redis' ); // Use Redis for datastore define( 'CACHE_METHOD', 'Redis' ); // Use Redis for cachingdefine( 'REDIS_ENABLED', true ); // Use Redis for sessions can I use mysql for sessions (for other SSO integration is based on that) and Redis for everything else like this? define( 'REDIS_ENABLED', false); // Use Redis for sessions define( 'OUTPUT_CACHE_METHOD', 'Redis' ); // Store guest pages in Redis define( 'STORE_METHOD', 'Redis' ); // Use Redis for datastore define( 'CACHE_METHOD', 'Redis' ); // Use Redis for caching
Recommended Posts