1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
<html>
<head>
<title>OSCache Tag Reference</title>
</head>
<body bgcolor="#FFFFFF">
<p><b>OSCache</b> comes with a JSP tag library that controls all its major functions. The tags
are listed below with descriptions, attributes and examples of use.</p>
<p>For instructions on installing OSCache in a web application, see the
<a href="install.html">Installation Guide</a>.</p>
<p>The tags are:</p>
<ul>
<li><a href="#cache">cache</a> - The main caching tag</li>
<li><a href="#usecached">usecached</a> - A nested tag to force using a cached version.</li>
<li><a href="#flush">flush</a> - To flush caches programmatically.</li>
<li><a href="#addgroup">addgroup</a> - This tag must be nested inside <cache:cache/>.
It allows groups to be dynamically added to a cached block.</li>
</ul>
<p>For all listed attributes, <font color="#CC0000">req</font> means it that attribute
is required and any value in [] is a default value. All attributes can accept runtime
expressions.</p>
<p>From the title of the tag you can see whether or not the tag has a body.</p>
<ul>
<li><tag></tag> tags always have a body</li>
<li><tag /> does not have a body </li>
<li><tag /></tag> can have a body or not depending on the circumstances.</li>
</ul>
<h3><br>
<a name="cache"></a><cache></cache></h3>
<p><b>Description:</b></p>
<blockquote>
<p>This is the main tag of OSCache. The body of the tag will be cached according to the
attributes specified. The first time a cache is used the body content is executed and
cached.</p>
<p>Each subsequent time the tag is run, it will check to see if the cached content is stale.
Content is considered stale due to one (or more) of the following being true:
<ul>
<li>The cached body content has been in the cache for longer than the time specified
by the time or duration attribute.</li>
<li>The cron attribute matches a date/time that is more recent than the time the body
content was originally cached.</li>
<li>The scope the body content is cached in was flushed since the content was originally
cached.</li>
</ul>
</p>
<p>If the cached body content is stale, the tag will execute the body again and recache the
new body content. Otherwise it will serve the cached content and the body will be skipped
(resulting in a large speed increase).</p>
</blockquote>
<p><b>Attributes:</b></p>
<ul>
<li><b>key</b> - [The request URI + query string] - The cache key, any string.
This should be unique for the given scope since duplicate keys will map to the same cache
entry. The default value uses an escaped version of the URI and query string of the current
page.<br/>It is possible to specify multiple cache tags in the same page without specifying
keys - in this situation an index is appended to the key of subsequent tags. However this
usage is discouraged since if the flow of the page is inconsistent, or cache tags are nested,
the indicies will potentially change each time the page is executed, resulting in seemingly
jumbled cache entries.</li>
<li><b>scope</b> - [application] - The scope of this cache (valid values are
"application" and "session").</li>
<li><b>time</b> - [3600] The amount of time to cache this content for (in seconds).
(Default is 3600 seconds, one hour). Supplying a negative value for this attribute means
that the content never expires.</li>
<li><b>duration</b> - [] - The duration of this cache (this attribute is an
alternative to <b>time</b>). duration can be specified using Simple Date Format
or ISO-8601 date format.</li>
<li><b>cron</b> - [] - A cron expression that determines when this cached content will expire.
This allows content to be expired at particular dates and/or times, rather than once a cache
entry reaches a certain age. See <a href="cron.html">Cron Expressions</a> to read more about
this attribute.</li>
<li><b>refresh</b> - [false] - A boolean. If true, the cache will be refreshed regardless of
whether it is considered stale or not. This enables you to decide at runtime whether or not
to rebuild the content.</li>
<li><b>mode</b> - [] - Setting this to "silent" will prevent the body of the tag from
being written to the output stream. This may be useful if you want to preload the cache with
content without actually displaying that content to the user.</li>
<li><b>groups</b> - [] - A comma-delimited list of group names can be provided. This allows
cache entries to be grouped according to your needs. Grouping is useful when you have cached
content that depends on other parts of your application or data - when that dependency changes,
flushing the relevant group will cause all cache entries in that group to be expired.</li>
<li><b>language</b> - [] - The ISO-639 language code to distinguish different content cached
under an otherwise identical key. This is useful on a multilingual site where the same JSP
code is used to render content in different languages depending on the current user's
preferences.</li>
<li><b>refreshpolicyclass</b> - [] - A fully-qualified classname that extends
<code>com.opensymphony.oscache.web.WebEntryRefreshPolicy</code>. This allows you to
programmatically determine whether cached content should be exipired.</li>
<li><b>refreshpolicyparam</b> - [] - Any arbitrary parameters that you need to pass through to
the refreshpolicyclass. Specifying this attribute without specifying a refreshpolicyclass
will have no effect.</li>
</ul>
<p><b>Examples:</b></p>
<blockquote>
<p>This will cache the JSP content using the current URI as a key (which means this must be
the only cache tag on the page to work).</p>
<p><code><cache:cache><br>
... some jsp content ...<br>
</cache:cache> </code></p>
<p>This will cache the content with a constant key in the user's session scope.
Any page that uses this key will access one shared cache.</p>
<p><code><cache:cache key="foobar" scope="session"><br>
... some jsp content ...<br>
</cache:cache> </code></p>
<p>This will cache the content with a programmatic key (here a product ID) for
30 minutes. It will also refresh if the variable <code>needRefresh</code>
is true.</p>
<p><code><cache:cache key="<%= product.getId() %>" time="1800"
refresh="<%= needRefresh %>"><br>
... some jsp content ...<br>
</cache:cache> </code></p>
<p>This will cache the content with a programmatic key, expiring it every morning at 2am.
It will also refresh if the variable <code>needRefresh</code> is true.</p>
<p><code><cache:cache key="<%= product.getId() %>" cron="0 2 * * *"
refresh="<%= needRefresh %>"><br>
... some jsp content ...<br>
</cache:cache> </code></p>
<p>Suppose we had a dynamic list of categories that we pull from a database, and we also store
currency exchange rates that get updated occasionally by calling a webservice. Suppose also that
we have some content that displays information about both the categories and the current exchange
rate values. The following example caches the body content and assigns it to two cache groups,
"currencyData" and "categoryList". When the exchange rates or the category
list is updated, the appropriate group can be flushed causing this content (along with any other
content associated with that group) to be exipired and then rebuilt the next time the page
is processed:</p>
<p><code><cache:cache key="<%= product.getId() %>" time="-1"
group="currencyData, categories"><br>
... display category list ...<br>
... display currency information ...<br>
</cache:cache> </code></p>
</blockquote>
<h3><br>
<a name="usecached"></a><usecached /></h3>
<p><b>Description:</b></p>
<blockquote>
<p>This tag is nested within a <cache> tag and tells its parent whether
or not to use the cached version.</p>
</blockquote>
<p><b>Attributes:</b></p>
<ul>
<li><b>use</b> - [true] - A boolean that tells the tag whether or not to use the cached
version. (true = use cached version). This is useful for programmatic control of the cache.</li>
</ul>
<p><b>Example:</b></p>
<blockquote>
<p>This is a good example of error tolerance. If an exception occurs, the cached
version of this content will be output instead.</p>
<p><code><cache:cache></code><code><br>
<% try { %><br>
... some jsp content ...<br>
<% } catch (Exception e) { %><br>
<cache:usecached /><br>
<% } %><br>
</cache:cache> </code></p>
</blockquote>
<h3><br>
<a name="flush"></a><flush /></h3>
<p><b>Description:</b></p>
<blockquote>
<p>This tag is used to flush caches at runtime. It is especially useful because
it can be coded into the administration section of your site so that admins
can decide when to flush the caches. </p>
</blockquote>
<p><b>Attributes:</b></p>
<ul>
<li><b>scope</b> - [all] - This decides what scope will be flushed. Valid values
are "application", "session" and null. A null scope will
flush all caches, regardless of their scope. </li>
<li><b>key</b> - [] - When a key and a scope are both given, just that single cache
entry will be marked to be flushed. When it is next accessed, it will be refreshed.
It is not valid to specify a key without a scope.
<li><b>group</b> - [] - Specifying a group will cause all cache entries in the group
to be flushed. It is not valid to specify a group without a scope.
<li><b>pattern</b> - [] - Any keys that contain this string will be flushed from the
specified scope. It is not valid to specify a pattern without a scope. (Note:
pattern flushing has been deprecated - you are encouraged to use the grouping
functionality instead. It is more flexible and provides better performance.)
<li><b>language</b> - [] - The ISO-639 language code to distinguish different content cached
under an otherwise identical key. This is useful on a multilingual site where the same JSP
code is used to render content in different languages depending on the current user's
preferences.</li>
</ul>
<p><b>Example:</b></p>
<blockquote>
<p>This will flush the application scope.</p>
<p><code><cache:flush scope="application" /></code></p>
<p>This will flush the cache entry with key "foobar" in the session scope.</p>
<p><code><cache:flush scope="session" key="foobar" /></code></p>
<p>This will flush all cache entries in the "currencyData" group from the
application scope.</p>
<p><code><cache:flush scope="application" group="currencyData" /></code></p>
</blockquote>
<h3><br>
<a name="addgroup"></a><addgroup /></h3>
<p><b>Description:</b></p>
<blockquote>
<p>This tag must be nested inside a <cache:cache/> tag. It allows groups to be dynamically
added to a cached block. It is useful when the group(s) a cached block should belong to are unknown
until the block is actually rendered. As each group is 'discovered', this tag can
be used to add the group to the block's group list.</p>
</blockquote>
<p><b>Attributes:</b></p>
<ul>
<li><b>group</b> - <font color="#CC0000">req</font> - The name of the group to add the enclosing
cache block to.
</li>
</ul>
<p><b>Example:</b></p>
<blockquote>
<p>This will add the cache block with the key 'test1' to groups 'group1' and 'group2'.</p>
<p><code><cache:cache key="test1"><br>
<cache:addgroup group="group1" /><br>
... some jsp content ...<br>
<cache:addgroup group="group2" /><br>
... some more jsp content ...<br>
</cache:cache> </code></p>
</blockquote>
</body>
</html>
|