Gunakan secara pribadi (dan berfungsi dengan baik ...) X64 AVX NTS Versi
⏩ Lihat contoh file konfigurasi memcache.ini
php -i | findstr Compiler
Hasil contoh:
Compiler => MSVC 19.31.30818
Compiler => 2022
VS17 = Visual C ++ 2022> MSVC 19. 3x & 19. 4x > Toolset 14. 3x & 14. 4x
VS16 = Visual C ++ 2019> MSVC 19. 2x > Toolset 14. 2x
VC15 = Visual C ++ 2017> MSVC 19. 1x > Toolset 14. 1x
VC14 = Visual C ++ 2015> MSVC 19. 0x > Toolset 14. 0x
php -i | findstr Architecture
Hasil contoh:
Architecture => x64
php -i | findstr Thread
Hasil contoh:
Thread Safety => disabled
NTS = dinonaktifkan
TS = diaktifkan
Periksa instruksi yang didukung CPU Anda dengan CPU-Z
main dengan PR103⏩ VC15 / VS16 / VS17
- 8.2 tambalan
php-8.2.x_memcache.dll dengan php-src 8.2.13 (API 20220829)php-8.3.x_memcache.dll dengan php-src 8.3.0 (API 20230831)php-8.4.x_memcache.dll dengan php-src 8.4.0rc1 (API 20240924)x64 untuk vs16 & vc17NON_BLOCKING_IO_php8⏩ VC15 / VS16 / VS17
- 8.0 Patch
php-8.1.x_memcache.dll dengan php-src 8.1.10 (API 20210902)php-8.0.x_memcache.dll dengan php-src 8.0.23 (API 20200930) NON_BLOCKING_IO_php8⏩ VC15 / VS16
php-7.4.x_memcache.dll dengan php-src 7.4.13 (API 20190902)php-7.3.x_memcache.dll dengan php-src 7.3.25 (API 20180731)php-7.2.x_memcache.dll dengan php-src 7.2.34 (API 20170718) NON_BLOCKING_IO_php7⏩ VC15 / VS16
php-7.1.x_memcache.dll dengan php-src 7.1.33 (API 20160303) ⏩ VC14
php-7.1.x_memcache.dll dengan php-src 7.1.0 (API 20160303)php-7.0.x_memcache.dll dengan php-src 7.0.6 (API 20151012) Cari 'Nama Produk' dalam informasi terperinci dari file DLL di Windows Explorer 
Lihat php_info() 
Lihatlah Bininfo.csv
/O2 /GL /MD /Zi/LTCG /OPT:REF,ICF2016-05-18
Saya telah memperhatikan 2 bug saat mengimplementasikan memcache session.handler untuk
session.save_handler = memcache
session.save_path = "tcp://127.0.0.1:11211"
memcache.protocol = ascii , ada beberapa kunci acak di session_start() menurut memcache.lock_timeout jadi saya telah mengatur memcache.lock_timeout = 1 tetapi itu tidak menyelesaikan masalah (hanya membuatnya kurang terlihat ..)memcache.protocol = binary , bug pertama tampaknya tidak muncul tetapi sesi hancur gagal! Semua tes itu telah dilakukan dengan phpMyadmin yang menulis data kompleks dalam sesi Jadi Anda dapat menemukan memcachesessionHandlerprepend.php A memcachesessionHandler mengimplementasikan sessionHandlerFace untuk ditambahkan ke php.ini Anda dengan konfigurasi:
session.save_handler = user
auto_prepend_file = c:/path/to/MemcacheSessionHandlerPrepend.php
; session.save_path =
Lihat masalah #23 dan diskusi di stackoverflow