-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[FrameworkBundle] add cache.app.simple psr simple cache #25710
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
Conversation
@@ -11,6 +11,10 @@ | |||
<tag name="cache.pool" clearer="cache.app_clearer" reset="reset" /> | |||
</service> | |||
|
|||
<service id="cache.app.simple" class="Symfony\Component\Cache\Simple\Psr6Cache" public="true"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should it be private?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just kept it consistent with the cache.app
service which is also public.
So not sure 😊
If we don't really promote this service via the documentation I guess we could also make it private.
Thank you @dmaicher. |
…e (dmaicher) This PR was squashed before being merged into the 4.1-dev branch (closes #25710). Discussion ---------- [FrameworkBundle] add cache.app.simple psr simple cache | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | yes | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #25708 | License | MIT | Doc PR | TODO? This adds a PSR SimpleCache version of the `cache.app` service. Should I also update the documentation somewhere? 😊 Commits ------- 1b6ec8b [FrameworkBundle] add cache.app.simple psr simple cache
This adds a PSR SimpleCache version of the
cache.app
service.Should I also update the documentation somewhere? 😊