Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/foodbank.codeskitter.site/vendor/nette/caching/src/Caching/
Upload File :
Current File : /home/users/unlimited/www/foodbank.codeskitter.site/vendor/nette/caching/src/Caching/BulkWriter.php

<?php

/**
 * This file is part of the Nette Framework (https://nette.org)
 * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
 */

declare(strict_types=1);

namespace Nette\Caching;


/**
 * Cache storage with a bulk write support.
 */
interface BulkWriter
{
	/**
	 * Writes to cache in bulk.
	 * @param array{string, mixed} $items
	 */
	function bulkWrite(array $items, array $dependencies): void;

	/**
	 * Removes multiple items from cache
	 */
	function bulkRemove(array $keys): void;
}