Gets all data associated with the given key.
Use this method only if you know what you are doing.
string $key The store key:
array An array of data associated with the key
private function getMetadata($key) {
if (false === ($entries = $this
->load($key))) {
return array();
}
return unserialize($entries);
}