We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26cb28d commit db25c09Copy full SHA for db25c09
src/Caching/Cache.php
@@ -393,7 +393,7 @@ public function start($key): ?OutputHelper
393
*/
394
protected function generateKey($key): string
395
{
396
- return $this->namespace . md5(is_scalar($key) ? (string) $key : serialize($key));
+ return $this->namespace . hash('xxh128', is_scalar($key) ? (string) $key : serialize($key));
397
}
398
399
0 commit comments