Installation

Cette extension » PECL n'est pas intĂ©grĂ©e Ă  PHP. Des informations sur l'installation de ces extensions PECL peuvent ĂȘtre trouvĂ©es dans le chapitre du manuel intitulĂ© Installation des extensions PECL. D'autres informations comme les notes sur les nouvelles versions, les tĂ©lĂ©chargements, les sources des fichiers, les informations concernant les mainteneurs ainsi qu'un CHANGELOG, peuvent ĂȘtre trouvĂ©es ici : » https://pecl.php.net/package/memcache.

Note: Il est possible de dĂ©sactiver le support du gestionnaire de sessions memcache. L'option 'pecl install' le demande (activĂ© par dĂ©faut), cependant, lors de la compilation statique dans PHP, l'option de configuration --disable-memcache-session peut ĂȘtre utilisĂ©e.

add a note

User Contributed Notes 2 notes

up
34
mit at mitayai dot org ¶
16 years ago
It is very important to note when reading the information supplied by others on this page that there are two *distinct* memcache PHP implementations for the service "memcached".

1) pecl-memcache
2) pecl-memcached

This page is for the first, pecl-memcache. 

If you are looking for pecl-memcached information, visit here:

http://www.php.net/manual/en/book.memcached.php
up
0
sidi dot khalifa at live dot fr ¶
4 years ago
I hope this will help someone, 
Context: I wanted to use memcache
like this:

$memcache = new \Memcache();

but composer suggests me to install the extension 
  "ext-memcache": "*",

but that one didn't want to work, so I installed 

sudo apt install php7.4-memcache 
sudo apt install php7.4-memcached 

and all worked