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 a5ef309 commit db7135aCopy full SHA for db7135a
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