- Posts: 6
- Thank you received: 1
Ask the community, share ideas, and connect with other LimeSurvey users!
LimeSurvey uses the Yii file cache by default, but it can be configured to use other cache engines. Possible other caches are:
Memcached
Redis
WinCache
XCache
Please see the Yii documentation for full description.
IMO you have to add this to your config.php.To use CMemCache as the cache application component, configure the application as follows,
YOU must setup memcached before,SvenFlock wrote: So I just copy the array definition the config.php at any place?
Did you read the starting post?DenisChenu wrote: YOU must setup memcached before,
github.com/memcached/memcached/wiki/TutorialCachingStory
I have fully installed and configured memcached on my server.
* array( * 'components'=>array( * 'cache'=>array( * 'class'=>'CMemCache', * 'servers'=>array( * array( * 'host'=>'server1', * 'port'=>11211, * 'weight'=>60, * ), * array( * 'host'=>'server2', * 'port'=>11211, * 'weight'=>40, * ), * ), * ), * ), * )
Yes,jelo wrote:
Did you read the starting post?DenisChenu wrote: YOU must setup memcached before,
github.com/memcached/memcached/wiki/TutorialCachingStoryI have fully installed and configured memcached on my server.
I think user must review the installation … he must know the port, the server etc …So I just copy the array definition the config.php at any place?
DenisChenu wrote:
I think user must review the installation … he must know the port, the server etc …So I just copy the array definition the config.php at any place?