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 fcdb685 commit 91c8061Copy full SHA for 91c8061
src/Caching/Cache.php
@@ -394,7 +394,7 @@ public function start($key): ?OutputHelper
394
*/
395
protected function generateKey($key): string
396
{
397
- return $this->namespace . md5(is_scalar($key) ? (string) $key : serialize($key));
+ return $this->namespace . hash('xxh128', is_scalar($key) ? (string) $key : serialize($key));
398
}
399
400
0 commit comments