oscache tag

 

The tags are:

  • cache - The main caching tag
  • usecached - A nested tag to force using a cached version.
  • flush - To flush caches programmatically.
  • addgroup - It allows a single group name to be dynamically added to a cached block. This tag must be nested inside <cache:cache/>.
  • addgroups - It allows a comma-delimited list of group names to be dynamically added to a cached block. This tag must be nested inside <cache:cache/>.
Tag Legend
  • For all listed attributes, req means it that attribute is required and any value in [ ] is a default value. All attributes can accept runtime expressions.
  • From the title of the tag you can see whether or not the tag has a body:
    • <tag></tag> tags always have a body
    • <tag /> does not have a body
    • <tag /></tag> can have a body or not depending on the circumstances.

<cache></cache>

Description:

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.

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:

  • The cached body content has been in the cache for longer than the time specified by the time or duration attribute.
  • The cron attribute matches a date/time that is more recent than the time the body content was originally cached.
  • The scope the body content is cached in was flushed since the content was originally cached.

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).

Attributes:
  • key - [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.
    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.
  • scope - [application] - The scope of this cache (valid values are "application" and "session").
  • time - [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.
  • duration - [] - The duration of this cache (this attribute is an alternative to time). duration can be specified using Simple Date Format or ISO-8601 date format.
  • cron - [] - 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 

    http://stonedeng.iteye.com/blog/1378229

    .
  • refresh - [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.
  • mode - [] - 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.
  • groups - [] - 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.
  • language - [] - 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.
  • refreshpolicyclass - [] - A fully-qualified classname that extends com.opensymphony.oscache.web.WebEntryRefreshPolicy. This allows you to programmatically determine whether cached content should be exipired.
  • refreshpolicyparam - [] - Any arbitrary parameters that you need to pass through to the refreshpolicyclass. Specifying this attribute without specifying a refreshpolicyclass will have no effect.
    Examples
    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).
    
        <cache:cache>
             ... some jsp content ...
        </cache:cache>
    
        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.
    
        <cache:cache key="foobar" scope="session">
             ... some jsp content ...
        </cache:cache>
    
        This will cache the content with a programmatic key (here a product ID) for 30 minutes. It will also refresh if the variable needRefresh 
    is true.
    
        <cache:cache key="<%= product.getId() %>" time="1800" refresh="<%= needRefresh %>">
             ... some jsp content ...
        </cache:cache>
    
        This will cache the content with a programmatic key, expiring it every morning at 2am. It will also refresh if the variable needRefresh 
    is true.
    
        <cache:cache key="<%= product.getId() %>" cron="0 2 * * *" refresh="<%= needRefresh %>">
             ... some jsp content ...
        </cache:cache>
    
        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:
    
        <cache:cache key="<%= product.getId() %>" time="-1" group="currencyData, categories">
             ... display category list ...
             ... display currency information ...
        </cache:cache>

<usecached />

Description:

This tag is nested within a <cache> tag and tells its parent whether or not to use the cached version.

Attributes:
  • use - [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.
    Example
    This is a good example of error tolerance. If an exception occurs, the cached version of this content will be output instead.
    
        <cache:cache>
             <% try { %>
             ... some jsp content ...
             <% } catch (Exception e) { %>
                  <cache:usecached />
             <% } %>
        </cache:cache>

<flush />

Description:

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.

Attributes:
  • scope - [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.
  • key - [] - 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.
  • group - [] - 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.
  • pattern - [] - 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.)
  • language - [] - 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.
Example
This will flush the application scope.

    <cache:flush scope="application" />

    This will flush the cache entry with key "foobar" in the session scope.

    <cache:flush scope="session" key="foobar" />

    This will flush all cache entries in the "currencyData" group from the application scope.

    <cache:flush scope="application" group="currencyData" />

<addgroup />

Description:

This tag must be nested inside a <cache:cache/> tag. It allows a single group name to be dynamically added to a cached block. It is useful when the group 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.

Attributes:
  • group - req - The name of the group to add the enclosing cache block to.
Example
This will add the cache block with the key 'test1' to groups 'group1' and 'group2'.

    <cache:cache key="test1">
         <cache:addgroup group="group1" />
         ... some jsp content ...
         <cache:addgroup group="group2" />
         ... some more jsp content ...
    </cache:cache>

<addgroups /> (New! Since 2.3)

Description:

This tag must be nested inside a <cache:cache/> tag. It allows a comma-delimited list of groups names to be dynamically added to a cached block with a single tag statement. As a group list is 'discovered', this tag can be used to add the groups to the block's group list.

Attributes:
  • groups - req - The comma-delimited list of groups names to add the enclosing cache block to.
Example
This will add the cache block with the key 'test1' to groups 'group1' and 'group2'.

    <cache:cache key="test1">
         ... some jsp content ...
         <cache:addgroups groups="group1,group2" />
         ... some jsp content ...
    </cache:cache>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值