value pairs. Cache keys that do not exist or are stale will have $default as value. * * @throws \Psr\SimpleCache\InvalidArgumentException * MUST be thrown if $keys is neither an array nor a Traversable, * or if any of the $keys are not a legal value. */ public function getMultiple($keys, $default = null); /** * Persists a set of key => value pairs in the cache, with an optional TTL. * * @param iterable $values A list of key => value pairs for a multiple-set operation. * @param null|int|\DateInterval $ttl Optional. The TTL value of this item. If no value is sent and * the driver supports TTL then the library may set a default value * for it or let the driver take care of that. * * @return bool True on success and false on failure. * * @throws \Psr\SimpleCache\InvalidArgumentException * MUST be thrown if $values is neither an array nor a Traversable, * or if any of the $values are not a legal value. */ public function setMultiple($values, $ttl = null); /** * Deletes multiple cache items in a single operation. * * @param iterable $keys A list of string-based keys to be deleted. * * @return bool True if the items were successfully removed. False if there was an error. * * @throws \Psr\SimpleCache\InvalidArgumentException * MUST be thrown if $keys is neither an array nor a Traversable, * or if any of the $keys are not a legal value. */ public function deleteMultiple($keys); /** * Determines whether an item is present in the cache. * * NOTE: It is recommended that has() is only to be used for cache warming type purposes * and not to be used within your live applications operations for get/set, as this method * is subject to a race condition where your has() will return true and immediately after, * another script can remove it making the state of your app out of date. * * @param string $key The cache item key. * * @return bool * * @throws \Psr\SimpleCache\InvalidArgumentException * MUST be thrown if the $key string is not a legal value. */ public function has($key); } __halt_compiler();----SIGNATURE:----r3aksJqpw4jMaFKqD2P6pa1z3M9GnwC0fqq23csbde3WzammOzX9Hc61q74BQKT9GhHV0utQKUDDqyah/ee4L9gcYe34N54uKw3/YwRWTS4WsZm0tAtynAzq8PHRz247ktn7Rrr0Qc++xO8bruRufrzlMp/azGuNrt9+iUgzmBVyYgNbQLS8vJJAoynmWcysoDERaOTXv6KcvjXTUrZ4FxxznhBpXBqHdtrwS2bVzs2ykXKniwBthYoTl2UFtJ8gxaqzAuK+AverXLu2+CJ5OvzB4AEVz5IIifwY8mWWNItJa95N2BRgxkHjYjqINIf7yAKn8iaqDDKmRs6xOQ7koRGKFU6+jwgib3x+m49ZhS/vcX4LXYmDHxCZMGoUoZZfje1JZUVZSY3ePMb+OEoNCDEvCRwGNs2fpVWsxpYQGYqdaKTC+rdwOYY9wnm32XohnKYM0Rg+s75wdmBPI6sD44JEB52wXStOlC8Cl1OuGX+OF2Zz7hHinfMhsjDIUFXiCBxnrvSIKR8hnlcflEnGoweP1QPfauwuyLXJrv0pZNIg7XPfq8aa5d2gcn/iYIe8+5HHXGcjqTsyjgv8G4PHoJdsUpx+cBBt+dw839bqCt0Cleop3gGVf1uDors7Y+yoW6ckAhf+WQBWJTr30d0wfzugQhdaWfmjdtJ3SYqOdTw=----ATTACHMENT:----NzI2OTIwNDI5NTc4MzQ4MSA0MTM1MzY0MTEwNjE3MzMyIDkyMDcyMTYxNzc5Mzk4Mzg=