Skip to content

Instantly share code, notes, and snippets.

@alanivey
Last active August 29, 2015 14:11
Show Gist options
  • Save alanivey/7acb05bf3e3dfc972b86 to your computer and use it in GitHub Desktop.
Save alanivey/7acb05bf3e3dfc972b86 to your computer and use it in GitHub Desktop.
Install opcache for PHP 5.3 or 5.4 in OS X with Homebrew
brew install -v php53-opcache
sed -i '' "s|^\(opcache\.memory_consumption[[:space:]]*=[[:space:]]*\)[0-9]*|\1256|;" $(brew --prefix)/etc/php/5.3/conf.d/ext-opcache.ini
brew install -v php54-opcache
sed -i '' "s|^\(opcache\.memory_consumption[[:space:]]*=[[:space:]]*\)[0-9]*|\1256|;" $(brew --prefix)/etc/php/5.4/conf.d/ext-opcache.ini
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment