%PDF- %PDF-
Direktori : /data/www_bck/varak.net_bck/losik.varak.net/vendor/nette/caching/src/Caching/ |
Current File : //data/www_bck/varak.net_bck/losik.varak.net/vendor/nette/caching/src/Caching/BulkReader.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 read support. */ interface BulkReader { /** * Reads from cache in bulk. * @return array key => value pairs, missing items are omitted */ function bulkRead(array $keys): array; } class_exists(IBulkReader::class);