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-16 compliant caching #462

Closed
jens1o opened this issue Jan 8, 2018 · 2 comments
Closed

Use PSR-16 compliant caching #462

jens1o opened this issue Jan 8, 2018 · 2 comments
Labels
Milestone

Comments

@jens1o
Copy link
Member

jens1o commented Jan 8, 2018

We should use a PSR-16 compliant implementation for caching, where at the moment we use a simple cache from doctrine:

public static function create($configuration = array(), LoggerInterface $logger = null, Cache $cache = null)
{
if (null === $cache) {
$cache = new ArrayCache();
}

@jens1o jens1o added the Feature label Jan 8, 2018
@jens1o jens1o added this to the 1.x milestone Jan 8, 2018
@jens1o jens1o changed the title Use PSR-6 compliant caching Use PSR-16 compliant caching Jan 9, 2018
@jens1o
Copy link
Member Author

jens1o commented Jan 9, 2018

psr-16 is more than enough for us, no need for psr-6. ;)

jens1o added a commit that referenced this issue Jan 9, 2018
@jens1o
Copy link
Member Author

jens1o commented Jan 9, 2018

done. Moved to Psr\SimpleCache while using Sabre's Memory Cache as a fallback. :)

@jens1o jens1o closed this as completed Jan 9, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant