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 f5232da commit eaf43f6Copy full SHA for eaf43f6
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