All Projects → nono303 → Php Memcache Dll

nono303 / Php Memcache Dll

PHP-memcache-dll

Projects that are alternatives of or similar to Php Memcache Dll

Gem Release
Release your ruby gems with ease.
Stars: ✭ 448 (-23.81%)
Mutual labels:  extension, release
Minerblock
An efficient browser extension to block browser-based cryptocurrency miners all over the web.
Stars: ✭ 563 (-4.25%)
Mutual labels:  extension
Projectvisbug
FireBug for designers › Edit any webpage, in any state https://a.nerdy.dev/gimme-visbug
Stars: ✭ 4,694 (+698.3%)
Mutual labels:  extension
Pgaudit
PostgreSQL Audit Extension
Stars: ✭ 532 (-9.52%)
Mutual labels:  extension
Metamask Extension
🌐 🔌 The MetaMask browser extension enables browsing Ethereum blockchain enabled websites
Stars: ✭ 6,585 (+1019.9%)
Mutual labels:  extension
Chrome Extension Cli
🚀 The CLI for your next Chrome Extension
Stars: ✭ 536 (-8.84%)
Mutual labels:  extension
Mimetype
A fast golang library for MIME type and file extension detection, based on magic numbers
Stars: ✭ 452 (-23.13%)
Mutual labels:  extension
Tonyenc
高性能、跨平台的 PHP7 代码加密扩展 (A high performance and cross-platform encrypt extension for PHP source code)
Stars: ✭ 569 (-3.23%)
Mutual labels:  extension
Bettertweetdeck
A browser extension to improve TweetDeck with a lot of features
Stars: ✭ 558 (-5.1%)
Mutual labels:  extension
Xcodeway
⛵️ An Xcode Source Editor Extension that helps navigating to many places easier
Stars: ✭ 530 (-9.86%)
Mutual labels:  extension
Web Developer
A browser extension that adds various web developer tools to a browser.
Stars: ✭ 532 (-9.52%)
Mutual labels:  extension
Vue Perf Devtool
Vue Performance Devtool is a browser extension for inspecting the performance of Vue Components.
Stars: ✭ 510 (-13.27%)
Mutual labels:  extension
Upload Release Asset
An Action to upload a release asset via the GitHub Release API
Stars: ✭ 537 (-8.67%)
Mutual labels:  release
Yomichan
Japanese pop-up dictionary extension for Chrome and Firefox.
Stars: ✭ 464 (-21.09%)
Mutual labels:  extension
Safari2aria
safari extension for use aria2 to replace safari default download
Stars: ✭ 563 (-4.25%)
Mutual labels:  extension
Hexcolors
HexColors is an extension for UIColor and NSColor to support for creating colors from a hex strings
Stars: ✭ 454 (-22.79%)
Mutual labels:  extension
Atom Plugins
some awesome atom-plugins !
Stars: ✭ 526 (-10.54%)
Mutual labels:  extension
Standard Version
🏆 Automate versioning and CHANGELOG generation, with semver.org and conventionalcommits.org
Stars: ✭ 5,806 (+887.41%)
Mutual labels:  release
Flask Caching
A caching extension for Flask
Stars: ✭ 582 (-1.02%)
Mutual labels:  extension
Cp Ddd Framework
A lightweight flexible development framework for complex business architecture with full ecosystem!轻量级业务中台开发框架,中台架构的顶层设计和完整解决方案!
Stars: ✭ 566 (-3.74%)
Mutual labels:  extension

PHP - pecl-memcache Windows binaries

Personally use (and working fine...) x64 avx nts version.
See memcache.ini configuration file exemple

VC15 & VS16

  • VS16 : toolset 14.28.29333
  • VC15 : toolset 14.16.27023
  • Window Kit 10.0.19041.0
  • AVX releases for specified directory

Version 8.1-dev "e014963" branch NON_BLOCKING_IO_php8

2020-12-28 - commit

2021-01-07 - build

Version 8.0 "36d7181" branch NON_BLOCKING_IO_php8

2020-12-06 - commit

2020-12-06 - build

Version 4.0.5.2 "4fdcbf9" branch NON_BLOCKING_IO_php7

discontinued

2020-09-24 - commit

2020-11-14 - build

VC14

discontinued

Version 3.0.9-dev

2016-12-08


Check your version

  • Look for 'Product name' in detailed information of the dll file in Windows explorer image-20201114113957010

  • Look at php_info() image-20201114113957010

  • Look at bininfo.csv

Build Scripts

Dependencies

CFLAGS add:

  • /GL
  • MD
  • /Zi
  • /O2

LDFLAGS add:


2016-05-18

I’ve noticed 2 bugs when implementing memcache session.handler for

session.save_handler = memcache
session.save_path = "tcp://127.0.0.1:11211"
  1. With memcache.protocol = ascii, there is some random lock on session_start() according to memcache.lock_timeout so i've set memcache.lock_timeout = 1 but that doesn’t resolve the problem (just makes it less visible..)
  2. With memcache.protocol = binary, first bug seems not appearing but session destroy failed ! All that test have been done with phpmyadmin which write complex data in session

So you can find MemcacheSessionHandlerPrepend.php a MemcacheSessionHandler implementing SessionHandlerInterface to add to your php.ini with config:

session.save_handler = user
auto_prepend_file = c:/path/to/MemcacheSessionHandlerPrepend.php
; session.save_path = 

See issue #23 and discution on stackoverflow

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].