ReCache - Speed up your forum
- Edited
mekici can you check what version of ReCache you are on? I recently pushed a small hotfix for a few things. I have a bigger update coming out on Tuesday or Wednesday with a massive list of changes which will more than likely remedy any lingering issues.
Edit: I reread some of your comments above and it looks like you disabled the "flushall" command (rename-command). This is a required command for recache to function. Without it, recache is unable to properly invalidate the cache when new data arrives
Kyrne When rename-command FLUSHALL "" is active in the redis.conf file, I get the answer when I run php flarum recache: clear kmut:
Clearing the cache...
In Client.php line 370:
ERR unknown command `FLUSHDB`, with args beginning with:
cache:clear [-h|--help] [-q|--quiet] [-v|vv|vvv|--verbose] [-V|--version] [--ansi] [--no-ansi] [-n|--no-interaction] [--] <command>
root@lemp-s-1vcpu-2gb-fra1-01:/home/site# php flarum recache:clear
In Client.php line 370:
ERR unknown command `FLUSHALL`, with args beginning with:
recache:clear [-h|--help] [-q|--quiet] [-v|vv|vvv|--verbose] [-V|--version] [--ansi] [--no-ansi] [-n|--no-interaction] [--] <command>
mekici I was getting an error while clearing the cache because I added the following lines to the redis.conf file. I have now fixed this and successfully cleared the cache.
rename-command FLUSHDB ""
rename-command FLUSHALL ""
rename-command DEBUG ""Now the only problem is when using the upload plugin, it gives the same "opss ...." error. I tried imgur and local in fof / upload plugin. The same error in both. Meanwhile, image optimization is on, but jpegoptim, optipng is installed on the server.
There is no record of today in the log records
I did what you said. I removed the rename-command FLUSHALL "" line, but strange behaviors related to notifications and newly installed plugins continue.
[deleted]
Kyrne I have a bigger update coming out on Tuesday or Wednesday with a massive list of changes which will more than likely remedy any lingering issues.
Looking forward to this....
Currently, when I activate the plugin in my own forum, the discussions do not appear when f5 is done on the homepage. I'm looking forward to the new update.
- Edited
@mekici @maruco @[deleted] @DursunCan
Here it is, the big two point oh!
2.0.0
New Features & Changes:
- Caching of Discussion Pages
- Caching of user pages
- Beta support for Categories
- Turned a few knobs to make ReCache even faster! (up to 30%)
- Asset files (js, css, locale) are no longer cached
- Before, asset files were put into a cached directory which would often be outdated
- ReCache now actively monitors the assets files and pushes new ones to the user as necessary
- The response cache and query cache now communicate
- Each have "Checks and Balances" to ensure cached data is still valid
- They no longer sit in their own space, they share data and work off the same database in Redis
- Dropped support for the file driver, Redis is now a requirement
- ReCache now uses tags in Redis to allow for selective invalidation of the ResponseCache
- Added various runtime checks to ensure the website doesn't break, even if the data is invalid
- Added support for changing user language even on a cached page
- Added a check to ensure private discussions stay private
- Full beta 13 support (beta 13 is required now)
- A bunch more under the hood changes to make ReCache better
Fixes:
- Fixed an issue that would cause notifications and discussions to show not as read even after reading them
- Fixed a race condition which possibly led to outdated query results being returned after invalidation.
- Fix for most (if not all) peculiar behavior such as really old pages being loaded, even after the cache was cleared
- Fix for incorrect driver being used sometimes for the response cache (it's Redis all the time now)
- Other minor issues
Updating:
Please read through each step and follow them in order, this is important to ensure everything works properly.
- Ensure that Redis is properly set up before updating (this is not an issue on first install)
- Run
composer update reflar/recache
- Turn off Query Caching and turn it back on
- run
php flarum recache:clear
DursunCan Please read the install instructions here: https://extiverse.com/extension/reflar/recache especially the section related to query caching.
- Edited
DursunCan I save by selecting the "Enable Query Cache (Redis Only)" option. But marking turns off after saving.
I have the same problem.
Kyrne Please read the install instructions here: https://extiverse.com/extension/reflar/recache especially the section related to query caching.
It has the write permission of www-data. (chown www-data -R /var/www/flarum/vendor/flarum/core/src/Database)