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 7be9661 commit e7394c1Copy full SHA for e7394c1
src/Services/InfoProviderSystem/PartInfoRetriever.php
@@ -33,8 +33,8 @@
33
final class PartInfoRetriever
34
{
35
36
- private const CACHE_DETAIL_EXPIRATION = 5; // 4 days
37
- private const CACHE_RESULT_EXPIRATION = 5; // 7 days
+ private const CACHE_DETAIL_EXPIRATION = 60 * 60 * 24 * 4; // 4 days
+ private const CACHE_RESULT_EXPIRATION = 60 * 60 * 24 * 4; // 7 days
38
39
public function __construct(private readonly ProviderRegistry $provider_registry,
40
private readonly DTOtoEntityConverter $dto_to_entity_converter, private readonly CacheInterface $partInfoCache)
0 commit comments