A Chassis extension to install and configure Redis on your server.
- Add this extension to your extensions directory
- Run
vagrant provision
- Install
wp-redis
plugin, and symlinkobject-cache.php
to your content directory, if you haven't already. example:
vagrant ssh
wp plugin install wp-redis
WPCONTENTDIR=$(wp eval 'echo WP_CONTENT_DIR;')
cd $WPCONTENTDIR
ln -s wp-redis/object-cache.php .
(Note: wp-redis might be handling the symlinking part soon, see #126, eliminating the need for step 3 altogether)