Prado\Caching\TMemCache::setMinSavings PHP Method

setMinSavings() public method

public setMinSavings ( $value )
    public function setMinSavings($value)
    {
        if ($this->_initialized) {
            throw new TInvalidOperationException('memcache_min_savings_unchangeable');
        } else {
            $this->_minSavings = TPropertyValue::ensureFloat($value);
        }
    }