/var/www/vhosts/nabawater/vendor/yiisoft/yii2/caching
NameSizeModeActions
migrations/-0755rm
ApcCache.php65390644editdlrm
ArrayCache.php23590644editdlrm
Cache.php260060644editdlrm
CacheInterface.php95640644editdlrm
ChainedDependency.php25270644editdlrm
DbCache.php104980644editdlrm
DbDependency.php22740644editdlrm
DbQueryDependency.php37380644editdlrm
Dependency.php42430644editdlrm
DummyCache.php29150644editdlrm
ExpressionDependency.php19500644editdlrm
FileCache.php108710644editdlrm
FileDependency.php16050644editdlrm
MemCache.php139010644editdlrm
MemCacheServer.php19660644editdlrm
TagDependency.php36010644editdlrm
WinCache.php54640644editdlrm
XCache.php43220644editdlrm
ZendDataCache.php33710644editdlrm
Edit: /var/www/vhosts/nabawater/vendor/yiisoft/yii2/caching/MemCacheServer.php (1966B)
* @since 2.0 */ class MemCacheServer extends \yii\base\BaseObject { /** * @var string memcache server hostname or IP address */ public $host; /** * @var int memcache server port */ public $port = 11211; /** * @var int probability of using this server among all servers. */ public $weight = 1; /** * @var bool whether to use a persistent connection. This is used by memcache only. */ public $persistent = true; /** * @var int timeout in milliseconds which will be used for connecting to the server. * This is used by memcache only. For old versions of memcache that only support specifying * timeout in seconds this will be rounded up to full seconds. */ public $timeout = 1000; /** * @var int how often a failed server will be retried (in seconds). This is used by memcache only. */ public $retryInterval = 15; /** * @var bool if the server should be flagged as online upon a failure. This is used by memcache only. */ public $status = true; /** * @var \Closure this callback function will run upon encountering an error. * The callback is run before fail over is attempted. The function takes two parameters, * the [[host]] and the [[port]] of the failed server. * This is used by memcache only. */ public $failureCallback; }