Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use PSR-6 for accessing the query cache #9004

Merged
merged 1 commit into from
Sep 13, 2021

Conversation

derrabus
Copy link
Member

No description provided.

@derrabus derrabus force-pushed the improvement/psr-6-query-cache branch from 7c9856d to 2634042 Compare September 11, 2021 23:15
@derrabus derrabus added this to the 2.10.0 milestone Sep 11, 2021
@greg0ire greg0ire marked this pull request as draft September 12, 2021 10:21
@greg0ire
Copy link
Member

Converting to draft since there is a TODO

@derrabus derrabus force-pushed the improvement/psr-6-query-cache branch from 2634042 to 0d59609 Compare September 12, 2021 22:19
@derrabus derrabus marked this pull request as ready for review September 12, 2021 22:19
@derrabus
Copy link
Member Author

Converting to draft since there is a TODO

🙈

Fixed.

@derrabus
Copy link
Member Author

I'm rebasing to make sure the new test is actually run.

@derrabus derrabus force-pushed the improvement/psr-6-query-cache branch from 0d59609 to b3835e8 Compare September 13, 2021 10:21
Signed-off-by: Alexander M. Turek <me@derrabus.de>
@derrabus derrabus force-pushed the improvement/psr-6-query-cache branch from b3835e8 to b9edf2f Compare September 13, 2021 10:23
@derrabus derrabus merged commit 6371081 into doctrine:2.10.x Sep 13, 2021
@derrabus derrabus deleted the improvement/psr-6-query-cache branch September 13, 2021 10:39
@VincentLanglet
Copy link
Contributor

Hi @derrabus @greg0ire,

Priori to this PR I use

$query = $this->createQueryBuilder('foo')->(...)->getQuery();

if ($invalidateCache) {
     $query->getQueryCacheDriver()?->delete(self::CACHE_KEY);
}

return $query->enableResultCache(self::CACHE_LIFETIME, self::CACHE_KEY)->getOneOrNullResult();

What would be the new way to achieve the same behavior now getQueryCacheDriver is deprecated ?

I'd like to be able to delete a specific cache entry, and this PR doesn't introduce a getQueryCache method.

@greg0ire
Copy link
Member

$configuration->getQueryCache() would be the way I suppose.

@VincentLanglet
Copy link
Contributor

VincentLanglet commented Nov 29, 2023

$configuration->getQueryCache() would be the way I suppose.

Thanks, I can indeed solve it with

$queryCache = $this->getEntityManager()->getConfiguration()->getQueryCache();
$queryCache?->deleteItem(self::CACHE_KEY);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants