Skip to content

Instantly share code, notes, and snippets.

@petenelson
Last active September 10, 2025 19:32
Show Gist options
  • Save petenelson/fc630b5951b37b902ac9d0f6970d6524 to your computer and use it in GitHub Desktop.
Save petenelson/fc630b5951b37b902ac9d0f6970d6524 to your computer and use it in GitHub Desktop.
Setup Local WP memcached

Notes for getting memcached (not memcache) running on Local WP and PHP

In the Local WP site shell

brew install memcached libmemcached zlib pkg-config
pecl install memcached

Pass in the appropriate paths.

/opt/homebrew/Cellar/libmemcached/1.0.18_2
/opt/homebrew/Cellar/zlib/1.3.1

Turn on memcached in Local

extension=/opt/homebrew/Cellar/php/8.4.6/pecl/20240924/memcached.so

Notes for getting memcache (not memcached) running on Local WP and PHP

In the Local WP site shell

brew install zlib
PHP_ZLIB_DIR=/opt/homebrew/opt/zlib pecl install memcache

Turn on memcache in Local

extension=/opt/homebrew/Cellar/php/8.4.8/pecl/20240924/memcache.so
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment