1
2
3
4
5
6
7
8
9
10
11 """
12 PyBlosxom works by pulling data from the file system, passing it through
13 a series of filters and transformations, and then rendering it. Some
14 of these steps are somewhat intensive and to alleviate this, we cache
15 things.
16
17 For example, the entries.base.BaseEntry class allows entries to be
18 cached after they've been pulled from the file system and passed
19 through a series of filters/formatters.
20
21 There are several cache mechanisms. Read the documentation for each
22 to understand how they work and how to set them up. Additional caching
23 mechanisms can be dropped in this directory and used by setting the
24 "cacheDriver" item in the config dict.
25 """
26
27 __revision__ = "$Revision: 913 $"
28