Skip to content

Commit 498069b

Browse files
authored
perf: use XXH3 instead of MD5 (#6487)
* perf: use XXH3 instead of MD5 * fix Behat test
1 parent 6367972 commit 498069b

11 files changed

+16
-16
lines changed

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Recommendations:
127127

128128
* don't change existing tests if possible
129129
* always add a new `ApiResource` or a new `Entity/Document` to add a new test instead of changing an existing class
130-
* as of API Platform 3 each component has it's own test directory, avoid the `tests/` directory except for functional tests
130+
* as of API Platform 3 each component has its own test directory, avoid the `tests/` directory except for functional tests
131131
* dependencies between components must be kept at its minimal (`api-platform/metadata`, `api-platform/state`) except for bridges (Doctrine, Symfony, Laravel etc.)
132132
* for functional testing with phpunit (see `tests/Functional`, add your ApiResource to `ApiPlatform\Tests\Fixtures\PhpUnitResourceNameCollectionFactory`)
133133

@@ -139,11 +139,11 @@ https://github.com/api-platform/core/blob/002c8b25283c9c06a085945f6206052a99a5fb
139139

140140
To launch unit tests:
141141

142-
vendor/bin/simple-phpunit --stop-on-defect -vvv
142+
vendor/bin/phpunit --stop-on-defect
143143

144144
If you want coverage, you will need the `pcov` PHP extension and run:
145145

146-
vendor/bin/simple-phpunit --coverage-html coverage -vvv --stop-on-failure
146+
vendor/bin/phpunit --coverage-html coverage --stop-on-defect
147147

148148
Sometimes there might be an error with too many open files when generating coverage. To fix this, you can increase the `ulimit`, for example:
149149

features/http_cache/headers.feature

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ Feature: Default values of HTTP cache headers
77
Scenario: Cache headers default value
88
When I send a "GET" request to "/relation_embedders"
99
Then the response status code should be 200
10-
And the header "Etag" should be equal to '"7bfa587950d675e222660f68623f5f89"'
10+
And the header "Etag" should be equal to '"032297ac74d75a50"'
1111
And the header "Cache-Control" should be equal to "max-age=60, public, s-maxage=3600"
1212
And the header "Vary" should be equal to "Accept, Cookie"

src/Doctrine/Odm/Tests/DoctrineMongoDbOdmSetup.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ private static function createCacheConfiguration(bool $isDevMode, string $proxyD
9393
$namespace .= ':';
9494
}
9595

96-
$cache->setNamespace($namespace.'dc2_'.md5($proxyDir.$hydratorDir).'_'); // to avoid collisions
96+
$cache->setNamespace($namespace.'dc2_'.hash('xxh3', $proxyDir.$hydratorDir).'_'); // to avoid collisions
9797

9898
return $cache;
9999
}

src/Elasticsearch/Paginator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public function getIterator(): \Traversable
9595
$denormalizationContext = array_merge([AbstractNormalizer::ALLOW_EXTRA_ATTRIBUTES => true], $this->denormalizationContext);
9696

9797
foreach ($this->documents['hits']['hits'] ?? [] as $document) {
98-
$cacheKey = isset($document['_index'], $document['_id']) ? md5("{$document['_index']}_{$document['_id']}") : null;
98+
$cacheKey = isset($document['_index'], $document['_id']) ? hash('xxh3', "{$document['_index']}_{$document['_id']}") : null;
9999

100100
if ($cacheKey && \array_key_exists($cacheKey, $this->cachedDenormalizedDocuments)) {
101101
$object = $this->cachedDenormalizedDocuments[$cacheKey];

src/HttpCache/State/AddHeadersProcessor.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function process(mixed $data, Operation $operation, array $uriVariables =
5353
$resourceCacheHeaders = $operation->getCacheHeaders() ?? [];
5454

5555
if ($this->etag && !$response->getEtag()) {
56-
$response->setEtag(md5((string) $content));
56+
$response->setEtag(hash('xxh3', (string) $content));
5757
}
5858

5959
if (null !== ($maxAge = $resourceCacheHeaders['max_age'] ?? $this->maxAge) && !$response->headers->hasCacheControlDirective('max-age')) {

src/Metadata/Property/Factory/CachedPropertyMetadataFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function __construct(CacheItemPoolInterface $cacheItemPool, private reado
3838
*/
3939
public function create(string $resourceClass, string $property, array $options = []): ApiProperty
4040
{
41-
$cacheKey = self::CACHE_KEY_PREFIX.md5(serialize([$resourceClass, $property, $options]));
41+
$cacheKey = self::CACHE_KEY_PREFIX.hash('xxh3', serialize([$resourceClass, $property, $options]));
4242

4343
return $this->getCached($cacheKey, fn (): ApiProperty => $this->decorated->create($resourceClass, $property, $options));
4444
}

src/Metadata/Property/Factory/CachedPropertyNameCollectionFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function __construct(CacheItemPoolInterface $cacheItemPool, private reado
3838
*/
3939
public function create(string $resourceClass, array $options = []): PropertyNameCollection
4040
{
41-
$cacheKey = self::CACHE_KEY_PREFIX.md5(serialize([$resourceClass, $options]));
41+
$cacheKey = self::CACHE_KEY_PREFIX.hash('xxh3', serialize([$resourceClass, $options]));
4242

4343
return $this->getCached($cacheKey, fn (): PropertyNameCollection => $this->decorated->create($resourceClass, $options));
4444
}

src/Metadata/Resource/Factory/CachedResourceMetadataCollectionFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function __construct(private readonly CacheItemPoolInterface $cacheItemPo
3636
*/
3737
public function create(string $resourceClass): ResourceMetadataCollection
3838
{
39-
$cacheKey = self::CACHE_KEY_PREFIX.md5($resourceClass);
39+
$cacheKey = self::CACHE_KEY_PREFIX.hash('xxh3', $resourceClass);
4040
if (\array_key_exists($cacheKey, $this->localCache)) {
4141
return new ResourceMetadataCollection($resourceClass, $this->localCache[$cacheKey]);
4242
}

src/Metadata/Tests/Property/Factory/CachedPropertyMetadataFactoryTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@ public function testCreateWithGetCacheItemThrowsCacheException(): void
9292

9393
private function generateCacheKey(string $resourceClass = Dummy::class, string $property = 'dummy', array $options = []): string
9494
{
95-
return CachedPropertyMetadataFactory::CACHE_KEY_PREFIX.md5(serialize([$resourceClass, $property, $options]));
95+
return CachedPropertyMetadataFactory::CACHE_KEY_PREFIX.hash('xxh3', serialize([$resourceClass, $property, $options]));
9696
}
9797
}

src/Metadata/Tests/Property/Factory/CachedPropertyNameCollectionFactoryTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@ public function testCreateWithGetCacheItemThrowsCacheException(): void
9292

9393
private function generateCacheKey(string $resourceClass = Dummy::class, array $options = []): string
9494
{
95-
return CachedPropertyNameCollectionFactory::CACHE_KEY_PREFIX.md5(serialize([$resourceClass, $options]));
95+
return CachedPropertyNameCollectionFactory::CACHE_KEY_PREFIX.hash('xxh3', serialize([$resourceClass, $options]));
9696
}
9797
}

tests/TestSuiteConfigCache.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
final class TestSuiteConfigCache implements ConfigCacheInterface
1919
{
2020
/** @var array<string, string> */
21-
public static $md5 = [];
21+
public static array $hashes = [];
2222

2323
public function __construct(private readonly ConfigCacheInterface $decorated)
2424
{
@@ -32,8 +32,8 @@ public function getPath(): string
3232
public function isFresh(): bool
3333
{
3434
$p = $this->getPath();
35-
if (!isset(static::$md5[$p]) || static::$md5[$p] !== $this->getHash()) {
36-
static::$md5[$p] = $this->getHash();
35+
if (!isset(self::$hashes[$p]) || self::$hashes[$p] !== $this->getHash()) {
36+
self::$hashes[$p] = $this->getHash();
3737

3838
return false;
3939
}
@@ -48,6 +48,6 @@ public function write(string $content, ?array $metadata = null): void
4848

4949
private function getHash(): string
5050
{
51-
return md5_file(__DIR__.'/Fixtures/app/var/resources.php');
51+
return hash_file('xxh3', __DIR__.'/Fixtures/app/var/resources.php');
5252
}
5353
}

0 commit comments

Comments
 (0)