Clears user-space cache

Returns

mixed True on successful clear, false otherwise.

Source

						public function clear() {
		foreach ($this->_cache as $key => &$value) {
			unset($this->_cache[$key]);
		}
		return true;
	}