-
Notifications
You must be signed in to change notification settings - Fork 120
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
Msgpack serialize/unserialize support for APCu #93
Conversation
Codecov Report@@ Coverage Diff @@
## master #93 +/- ##
==========================================
- Coverage 87.19% 86.95% -0.25%
==========================================
Files 8 8
Lines 1234 1234
==========================================
- Hits 1076 1073 -3
- Misses 158 161 +3
Continue to review full report at Codecov.
|
It looks like apu is not loaded when tests run |
Other failed tests are not compatible with PHP 7 #109 |
Hi! Thanks for this submission. Please rebase this PR, so we can have a closer look! |
#162 still looking for reviews |
Hi, I added support to use Msgpack as a serializer for APCu. This was needed to me because IgBinary is very unstable under PHP 7 (gives a Segmentation Fault whenever you try to use it as a session or APCu serializer) and I want to switch to the newer runtime version.
In the coming days I will do some more testing. If some of you have any suggestion on how to improve the pull request, I will be happy to fix it.
PS. I see the CI build fails for test 029 since it doesn't have APCu installed. Maybe I could add support for APC as well and update .travis.yml to use it. Let me know!
Thanks!