lithium\storage\cache\adapter\Memcache::delete()

public method

Will attempt to remove specified keys from the user space cache.

Parameters

  • array $keys

    Keys to uniquely identify the cached items.

Returns

boolean

true on successful delete, false otherwise.

Source

	public function delete(array $keys) {
		if (count($keys) > 1) {
			return $this->connection->deleteMulti($keys);
		}
		return $this->connection->delete(current($keys));
	}