@@ -385,13 +385,29 @@ PHP 5.5 UPGRADE NOTES
385
385
- opcache.preferred_memory_model (default "")
386
386
- opcache.protect_memory (default "0")
387
387
- opcache.mmap_base (Windows-only)
388
+ - If APC or WinCache was used before, the user cache APIs can be replaced by:
389
+ - APCu, all supported OSes (http://pecl.php.net/package/APCu, Windows: http://windows.php.net/downloads/pecl/releases/apcu/)
390
+ - WinCache, windows only (http://pecl.php.net/package/WinCache), a version with the ability to use only the user
391
+ cache will be released shortly after 5.5.0 final
388
392
389
393
========================================
390
394
11. Windows Support
391
395
========================================
392
396
393
397
- Apache 2.4 handler is supported as of PHP 5.5.0
394
398
399
+ - OpCache
400
+ Error like 'unable to reattach to base address' could happen in many common setups.
401
+ It is due to some technical and design restriction in the engine and cannot be fixed
402
+ easily before 5.5.0 final was released.
403
+
404
+ A possible fix is to tweak the opcache.mmap_base INI setting by forcing the 1st address
405
+ to be tried.
406
+
407
+ For x86 version, the following addreses can be tried:
408
+ . 0x20000000, 0x21000000, 0x30000000, 0x31000000, 0x50000000
409
+ and for x64 (still expiremental):
410
+ . 0x0000100000000000, 0x0000200000000000, 0x0000300000000000, 0x0000700000000000
395
411
396
412
========================================
397
413
12. Other Changes
0 commit comments