lithium\storage\cache\adapter\Apc::clear()

public method

Clears entire user-space cache by flushing it. All cache keys using the configuration but without honoring the scope are removed.

The behavior and result when removing a single key during this process fails is unknown.

Returns

boolean

true on successful clearing, false otherwise.

Source

	public function clear() {
		return apc_clear_cache('user');
	}