mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-23 07:15:50 -04:00
git-svn-id: http://gallery.svn.sourceforge.net/svnroot/gallery/trunk/eval/gx/gallery3/trunk@18408 57fcd75e-5312-0410-8df3-f5eb6fbb1595
21 lines
323 B
PHP
21 lines
323 B
PHP
<?php defined('SYSPATH') or die('No direct script access.');
|
|
/**
|
|
* @package Cache:Memcache
|
|
*
|
|
* memcache server configuration.
|
|
*/
|
|
$config['servers'] = array
|
|
(
|
|
array
|
|
(
|
|
'host' => '127.0.0.1',
|
|
'port' => 11211,
|
|
'persistent' => FALSE,
|
|
)
|
|
);
|
|
|
|
/**
|
|
* Enable cache data compression.
|
|
*/
|
|
$config['compression'] = FALSE;
|