mus fb4d3b3d89 fixing indentation, changing default for new variable, updating Readme and other info | 8 miesięcy temu | |
---|---|---|
LICENSE | 2 lat temu | |
PicoZCache.php | 8 miesięcy temu | |
README.md | 8 miesięcy temu |
Plugin adds simple function of server-side caching your website to plain HTML / XHTML (.html with correct header) type.
To install the Pico Cache plugin clone this repository to your PicoCMS' plugin folder (or download the zip):
$> cd <pico_cms_root>/plugins
$> git clone https://<notabug_or_framagit>.org/ohnonot/PicoZCache
This should be enough, but please refer to PicoCMS documentation on how to further set up and configure plugins.
Default values are shown. Arrays have no default values.
The plugin will cache pages with different queries individually. Page queries are little strings added to a
page request:
http://dom.com/tags?q=picocms&page=3
Here, the page is tags
and the query is q=picocms&page=3
.
PicoZCache:
enabled: false
dir: content/zcache # Directory where cache should be saved. If your PHP has permission to do so,
# this can be a directory outside your webroot (leading / vs. no leading /).
invalidate: false # When the source markdown page is modified, the cached HTML file is updated.
# please keep in mind that many themes display an overview of ALL pages in EVERY page
# so just updating one cached file might notbe sufficient.
expires: 0 # Interval between caching (cached files will be overwritten after that many seconds,
# also sends Expires header to client). The default 0 is to never overwite cached files.
# This is useful if you have some method of watching for changes (see script below).
xhtml_output: false # If true, XHTML Content-Type header will be sent when loading cache page
exclude: # Never cache these pages (as requested by browser, but without queries)
- contact
- feed
- index # special name, also resolves to /
exclude_regex: no default # will be compared to $url with preg_match() (as above, but without the index exception)
# you can use both exclude and exclude_regex, but exclude will be evaluated first.
ignore_query: false # If enabled, pages with different queries will not be cached individually.
ignore_query_exclude:
- tags # These pages will be cached individually with their queries
- search
- index
With the invalidate
config setting, cached HTML files are automatically updated when the source page has changed. Only the cached file is deleted before being regenerated next time the source page is accessed. Please keep in mind that many themes display an overview of ALL pages in EVERY page, so updating just one cached file might not be sufficient.
If you want to clear the whole cache, remove the files from the cache folder, or delete the whole cache folder (it will be recreated).
Or if you want clear the whole cache when a single source has changed, you can set up a little daemon script that will clear out the cache whenever content changes. This can be necessary when some pages are created from multiple source files:
#!/bin/sh
# provide first the dir to be watched, second the dir to be cleared
dir="$1"; cache="$2"
printf "Directory to watch: %s\nCache to delete: %s\n" "$dir" "$cache"
delete() {
printf '%s: %s\n' "Events" "$1"
[ "${1##*,}" = ISDIR ] && printf "Not interested in mere directories.\n" && return
printf "File changes detected! Let's delete stuff...\n"
rm -v "$cache"/*.html 2>&1
}
while :; do
result="$(inotifywait --event modify --event create --event delete --format '%e' "$dir")"
delete "$result"
done
I don't use this anymore since I run a strict staging/production scenario now - with PicoZCache my production site is effectively all static HTML (after cache warming).
You can preload the cache directory with a wget
call like wget --spider --force-html --show-progress --recursive --no-parent https://www.example.com/
base_url: '//example.com';
Pico CMS offers Twig caching, which caches Twig templates as plain PHP files. While this omits the stage of Twig parsing, such caching still requires Pico to run PHP enable all other dependencies, libraries, plugins, and do Markdown parsing.
This plugin however caches entire pages to HTML files. This omits both parsing by Twig and Parsedown and additionally lets Pico stop doing things and load the HTML file immediately when the URL address is known. The plugin just saves HTML source of every visited page at first visit so on subsequent visits this HTML source will be shown instead of parsing the content.
On my system the decrease in response time is staggering, almost ten-fold.
Forked and re-forked from these repos:
https://github.com/glumb/pico_cache
https://github.com/Nepose/pico_cache
https://github.com/Tetras-Libre/pico_cache