diff options
| author | Ondrej Grover <ondrej.grover@gmail.com> | 2014-11-03 15:30:45 +0100 |
|---|---|---|
| committer | Ondrej Grover <ondrej.grover@gmail.com> | 2014-11-03 21:54:08 +0100 |
| commit | f87e4faa22ffb0190ded256b7b2200dc075413a3 (patch) | |
| tree | e487c64d82401080eedd543aa0db66c0f98a2d09 /docs/plugins.rst | |
| parent | 08044f243684a1219b4702950a48a0ac68f9090e (diff) | |
| download | pelican-f87e4faa22ffb0190ded256b7b2200dc075413a3.tar.gz | |
add notices about caching interfering with changes to settings and plugins
Diffstat (limited to 'docs/plugins.rst')
| -rw-r--r-- | docs/plugins.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/plugins.rst b/docs/plugins.rst index 78f6ccd0..15fcf109 100644 --- a/docs/plugins.rst +++ b/docs/plugins.rst @@ -20,6 +20,14 @@ Alternatively, another method is to import them and add them to the list:: from package import myplugin PLUGINS = [myplugin,] +.. note:: + + When experimenting with different plugins (especially the ones that + deal with metadata and content) caching may interfere and the + changes may not be visible. In such cases disable caching with + ``LOAD_CONTENT_CACHE = False`` or use the ``--ignore-cache`` + command-line switch. + If your plugins are not in an importable path, you can specify a list of paths via the ``PLUGIN_PATHS`` setting. As shown in the following example, paths in the ``PLUGIN_PATHS`` list can be absolute or relative to the settings file:: |
