-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Added missing APCU CacheProvider of doctrine/cache 1.6.x #18974
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
fncmedia
commented
Jun 6, 2016
Q | A |
---|---|
Branch? | 3.1 |
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | yes |
License | MIT |
Doc PR | reference to the documentation PR, if any |
👍 |
👍 |
Thank you @fncmedia. |
…Carsten Eilers) This PR was merged into the 3.1 branch. Discussion ---------- Added missing APCU CacheProvider of doctrine/cache 1.6.x | Q | A | ------------- | --- | Branch? | 3.1 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | yes | License | MIT | Doc PR | reference to the documentation PR, if any Commits ------- a104c39 Added APCU CacheProvider of doctrine/cache 1.6.x
Is it not going to be supported in 2.8? |
@dextervip No, we never backport features to already released minor versions. |
@xabbuh this one is really annoying because it prevents using Symfony 2 on PHP 7 with decent performances. The compatibility layer between APC and APCu has been disabled by default on APCu for PHP 7 and requires to recompile the extension to enable it. |
That's my issue. I've upgraded to PHP 7 with sf2.8 but I am unable to use apcu cache now. And I can't upgrade to sf3.x right now. Any workarounds for this? |
What is this used for, actually? Because before this I can already do: # app/config/config_prod.yml
doctrine:
orm:
metadata_cache_driver: 'apcu'
result_cache_driver: 'apcu'
query_cache_driver: 'apcu' Or is it non-functional? 😛 (But I thought it should throw |