- Posts: 7
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
to/application/config/internal.php
'class' => defined('YII_DEBUG') && YII_DEBUG ? 'system.caching.CDummyCache' : 'CApcCache',
to/framework/caching/CApcCache.php
public $useApcu=true;
return array( 'components' => array( 'db' => array(), 'cache'=>array( 'class' => 'CApcCache', 'useApcu' => true ), ) )
Not really sure what you are pointing at? Regarding if it is safe to use APCu caching and LimeSurvey or if you have any clue as to why APCu caching might speed up certain parts of the admin pages but not the admin survey page?DenisChenu wrote: About LS and caching, not really.
Is this what the /tmp folder is all about? These are pre-generated survey templates right?DenisChenu wrote: We have some project to use caching for survey generation (expression manager take a lot of time and need caching).
Is there a global setting that dictates what kind of caching we do? Atm my LimeSurvey is using huge amounts of I/O time and caching to APCu instead of the database might be usefull if at all possible.DenisChenu wrote: But in Yii : you need to ask to use cache. And if i remind : we use it only for DB Caching actually.
It's safe to use any of cache system you want, but cache are not used a lot in LimeSurvey.zfocuz wrote:
Not really sure what you are pointing at? Regarding if it is safe to use APCu caching and LimeSurvey or if you have any clue as to why APCu caching might speed up certain parts of the admin pages but not the admin survey page?DenisChenu wrote: About LS and caching, not really.
pre-generated survey templates is another system , and tmp folder is just here for old system compatibility. It's not really caching.zfocuz wrote:
Is this what the /tmp folder is all about? These are pre-generated survey templates right?DenisChenu wrote: We have some project to use caching for survey generation (expression manager take a lot of time and need caching).
No, except the one you already update.zfocuz wrote:
Is there a global setting that dictates what kind of caching we do? Atm my LimeSurvey is using huge amounts of I/O time and caching to APCu instead of the database might be usefull if at all possible.DenisChenu wrote: But in Yii : you need to ask to use cache. And if i remind : we use it only for DB Caching actually.