https://github.com/naxvog/wpr-redis
Addon to WP Rocket that allows storage of cache files in Redis.
https://github.com/naxvog/wpr-redis
redis wordpress-plugin wp-rocket
Last synced: 11 months ago
JSON representation
Addon to WP Rocket that allows storage of cache files in Redis.
- Host: GitHub
- URL: https://github.com/naxvog/wpr-redis
- Owner: naxvog
- License: gpl-3.0
- Created: 2019-07-11T22:52:42.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-05-30T09:39:08.000Z (about 5 years ago)
- Last Synced: 2025-04-26T06:39:24.661Z (about 1 year ago)
- Topics: redis, wordpress-plugin, wp-rocket
- Language: PHP
- Homepage:
- Size: 318 KB
- Stars: 13
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WPR-Redis
This plugin enables WP Rocket to store its generated cache files in the Redis database instead of the default filesystem storage.
## Requirements ##
* WP Rocket WordPress Plugin (tested up to v3.5.5.1)
* Redis Server
* PHP 7+
## Constant Configuration ##
You may use the following constants to configure the plugin. All constants will take preference over the defined settings if there are any.
* `WPR_REDIS_SCHEME` Needs to be set to `unix` to use a unix socket to connect.
* `WPR_REDIS_HOST` For TCP connections this will be the IP or hostname of the server. If you are using a socket connection this will be the socket path. Default: `localhost`
* `WPR_REDIS_PORT` Port to connect to the server using TCP. Default `6379`
* `WPR_REDIS_DB` The Database to be used. Default `0`
* `WPR_REDIS_PWD` Redis server password if needed.
* `WPR_REDIS_SALT` If set all stored keys will be prefixed by this salt. To further differentiate all keys will pre prefixed by their respective database table prefix as well.
## Known Issues ##
* Connection to any kind of Redis cluster is currently not supported
* If you are using nginx and if you can alter its configuration the [Rocket-Nginx](https://github.com/SatelliteWP/rocket-nginx) configuration seems to be faster than this (tested using a NVME SSD equipped server)
## Disclaimer ##
This plugin uses WP Rocket's namespacing to alter its file modification functions as well as WP Rockets `advanced-cache.php` file content filter to register itself. Any API changes from the side of WP Rocket might break this plugin's functionality so please report any issues you might have in the GitHub issue tracker.