while (list
($name,
$value) =
each($options)) { $name =
strtolower($name);
switch ($name) { case 'regexps':
$this->
_setRegexps($value);
break;
case 'default_options':
$this->
_setDefaultOptions($value);
break;
case 'content_type_memorization':
$this->
_setContentTypeMemorization($value);
break;
default:
$this->
setOption($name,
$value);
} } if (isset($this->_specificOptions
['http_conditional'
])) { if ($this->_specificOptions
['http_conditional'
]) { Zend_Cache::
throwException('http_conditional is not implemented for the moment !'
);
} } $this->
setOption('automatic_serialization', true
);
}