OSCache安裝
?
- 解壓oscache-2.4-full.
- 把oscache-2.4.jar放到/WEB-INF/lib下.
- 要確保commons-logging.jar也在環(huán)境變量中.
- 把/etc/oscache.properties放入/WEB-INF/classes下.
- 把etc/oscache.tld也放在/WEB-INF/classes下.
?
OSCache應(yīng)用
?
一、JSP的應(yīng)用
?
應(yīng)用OSCache的標(biāo)簽:
1.在web.xml中:
- < taglib > ? ??
- ???? < taglib-uri > oscache </ taglib-uri > ? ??
- ???? < taglib-location > /WEB-INF/classes/oscache.tld </ taglib-location > ? ??
- </ taglib > ???
<taglib> ??? <taglib-uri>oscache</taglib-uri> ??? <taglib-location>/WEB-INF/classes/oscache.tld</taglib-location> </taglib>
?jsp中就可以<%@ taglib uri="oscache" prefix="os"%>這樣來引用了.
?
2.直接在jsp中加入OSCache的標(biāo)簽庫引用
<%@ taglib uri="/WEB- INF/classes/oscache.tld" prefix="os"%>
官方的標(biāo)簽庫
<%@ taglib uri="http://www.opensymphony.com/oscache" prefix="cache" %>
這樣就不用再把oscache.tld放在/WEB-INF/classes下了.
?
目前OSCache有5個(gè)標(biāo)簽.他們是cache, usecached, flush, addgroup, addgroups:
?
<cache></cache>
OSCache中最主要的標(biāo)簽.括起來的內(nèi)容將根據(jù)屬性的設(shè)置來緩存起來.第一次執(zhí)行的時(shí)候,OSCache會(huì)把cache標(biāo)簽中的jsp執(zhí)行并且緩存起來,以后再執(zhí)行的話,他會(huì)首先判斷緩存的內(nèi)容是否過期,如果過期那么會(huì)從新執(zhí)行并緩存.否則就直接從緩存中讀取.判定過期的條件如下:
?
1.緩存的內(nèi)容超過了屬性time所指定的時(shí)間.
2.不符合cron設(shè)置的時(shí)間間隔.
3.如果scope指定的范圍刷新的話,則認(rèn)為過期了.如Session過期.
?
屬性如下:
key?? : 緩存的Key,可以是任何的字符,用來尋找緩存的內(nèi)容用的.可以理解成HashMap中的Key.不能把2個(gè)要緩存的對(duì)象定義成一個(gè)名字,那樣后一個(gè)會(huì)覆蓋前一個(gè)的內(nèi)容.默認(rèn)情況,如果不指定Key的話,OSCache也會(huì)自動(dòng)生成一個(gè)Key,規(guī)則是請(qǐng)求的URI+當(dāng)前頁面的Query String.
scope? : 緩存的范圍.有2個(gè), application和session.默認(rèn)值是application.
time?? : 緩存內(nèi)容的時(shí)間.以秒為單位,默認(rèn)是3600秒.到了指定的時(shí)間,就會(huì)刷新緩存內(nèi)容.如果指定一個(gè)負(fù)數(shù)的話,意味著永遠(yuǎn)不會(huì)過期.
duration : 也是用來指定緩存內(nèi)容的時(shí)間,它和time屬性只能是2選1,它的特點(diǎn)是可以用Simple Data Format 或者是ISO-8601進(jìn)行日期格式化.
cron?? : 用萬年歷的形式指定緩存內(nèi)容何時(shí)過期的.它應(yīng)用的Unix的萬年歷形式,如("0 * * * *")
refresh? : 是個(gè)Boolean值,如果是True的話,則不管前面提到的過期檢查,都刷新.默認(rèn)情況是false.
mode?? : 設(shè)置這項(xiàng)為”silent”將防止把括起來的內(nèi)容輸出.這在你預(yù)加載緩存內(nèi)容而不愿顯示給用戶看到時(shí)很有用.
groups? : 可以提供一個(gè)以逗號(hào)分割的組名稱.如group="A, B".這將允許你以組的名義來操作他們,分組非常有用,比如你要緩存的內(nèi)容正好需要另外一個(gè)應(yīng)用程序的一部分或數(shù)據(jù),當(dāng)依賴的發(fā)生了改變,正好聯(lián)動(dòng)的可以使很多的組過期,進(jìn)而使與組發(fā)生關(guān)聯(lián)的緩存內(nèi)容得到更新.
language : 設(shè)置編碼方式.
refreshpolicyclass:指定自定義的類來處理緩存的內(nèi)容什么時(shí)候過期.這個(gè)類需要從 refreshpolicyparam com.opensymphony.oscache.web.WebEntryRefreshPolicy繼承.
refreshpolicyparam : 它和上面的是聯(lián)合使用的.是給refreshpolicyclass傳任意的參數(shù)的.指定這項(xiàng)的話,就必須有refreshpolicyclass,否則就不起作用.
?
- <os:cache?key= "<%=myKey%>" ?time= "1800" ?refresh= "<%=needRefresh%>" > ??
- <!--這里是要緩存的內(nèi)容--> ??
- </os:cache> ??
- <!--這里將myKey標(biāo)識(shí)的緩存內(nèi)容保持 30 分鐘,到期自動(dòng)刷新.如果needRefresh為 true 也會(huì)刷新(適合于更新內(nèi)容的即時(shí)刷新).?-->??
<os:cache key="<%=myKey%>" time="1800" refresh="<%=needRefresh%>"> <!--這里是要緩存的內(nèi)容--> </os:cache> <!--這里將myKey標(biāo)識(shí)的緩存內(nèi)容保持30分鐘,到期自動(dòng)刷新.如果needRefresh為true也會(huì)刷新(適合于更新內(nèi)容的即時(shí)刷新). -->
?
- <os:cache?key= "<%=myKey%>" ?cron= "0?2?*?*?*" ?refresh= "<%=needRefresh%>" > ??
- <!--這里是要緩存的內(nèi)容--> ??
- </os:cache> ??
- <!-- ??
- 將myKey標(biāo)識(shí)的緩存內(nèi)容在每天的凌晨 2 時(shí)自動(dòng)刷新.如果needRefresh為 true 也會(huì)刷新(適合于更新內(nèi)容的即時(shí)刷新).舉到了這個(gè)例子,首先這五顆星的位置代表分,小時(shí),一個(gè)月中的天,月,一周中的天 ??
- 分:? 0 ~ 59 ??
- 小時(shí)?:? 0 ~ 23 ??
- 天(月)?:? 1 ~ 31 ??
- 月?:? 1 ~ 12 ,用英文全稱也可以.如January,?April ??
- 天(周):? 0 ~ 6 ( 0 代表Sunday, 1 代表Monday…? 6 代表Saturday) ??
- 舉個(gè)例子,比如我們想讓緩存的內(nèi)容在 4 月的晚上 11 : 45 分過期,可以這樣來寫 "45?23?*?April?*" ??
- -->??
<os:cache key="<%=myKey%>" cron="0 2 * * *" refresh="<%=needRefresh%>"> <!--這里是要緩存的內(nèi)容--> </os:cache> <!-- 將myKey標(biāo)識(shí)的緩存內(nèi)容在每天的凌晨2時(shí)自動(dòng)刷新.如果needRefresh為true也會(huì)刷新(適合于更新內(nèi)容的即時(shí)刷新).舉到了這個(gè)例子,首先這五顆星的位置代表分,小時(shí),一個(gè)月中的天,月,一周中的天 分: 0~59 小時(shí) : 0~23 天(月) : 1~31 月 : 1~12,用英文全稱也可以.如January, April 天(周): 0~6(0代表Sunday,1代表Monday… 6代表Saturday) 舉個(gè)例子,比如我們想讓緩存的內(nèi)容在4月的晚上11:45分過期,可以這樣來寫"45 23 * April *" -->
?
<usecached />
需要放在cache標(biāo)簽中嵌套使用(一般配合try..catch使用)告訴他的上級(jí)標(biāo)簽是否應(yīng)用緩存的譯本. 則出現(xiàn)異常時(shí)將會(huì)替換包括上級(jí)標(biāo)簽在內(nèi)的所有內(nèi)容(提示:Missing cached content).
use="true|false" : 是否應(yīng)用的標(biāo)記. 默認(rèn)為True.一般省略.
- <os:cache> ??
- ??..html.. ??
- ?????????<%? try ?{%> ??
- ?????????......html ??
- ?????????<%} catch ?(Exception?e)?{%> ??
- ??????????????Inside? catch :?<os:usecached?use= "<%=isUsed%>" />?YES ??
- ?????????<%?}?%> ??
- </os:cache>???
<os:cache> ..html.. <% try {%> ......html <%}catch (Exception e) {%> Inside catch: <os:usecached use="<%=isUsed%>"/> YES <% } %> </os:cache>
?出現(xiàn)異常時(shí)的頁面輸出有兩種:
1. use=false
..html..
......html
Inside catch: YES
2. use=true
Missing cached content
?
<flush />
?
?
?
?
- package ?com.shoo.test.cache; ??
- ??
- import ?java.util.Date; ??
- ??
- import ?com.opensymphony.oscache.base.NeedsRefreshException; ??
- import ?com.opensymphony.oscache.general.GeneralCacheAdministrator; ??
- ??
- public ? class ?BaseCache? extends ?GeneralCacheAdministrator?{ ??
- ???? //?過期時(shí)間(單位為秒); ??
- ???? private ? int ?refreshPeriod; ??
- ???? //?關(guān)鍵字前綴字符; ??
- ???? private ?String?keyPrefix; ??
- ??
- ???? private ? static ? final ? long ?serialVersionUID?=?-4397192926052141162L; ??
- ??
- ???? public ?BaseCache(String?keyPrefix,? int ?refreshPeriod)?{ ??
- ???????? super (); ??
- ???????? this .keyPrefix?=?keyPrefix; ??
- ???????? this .refreshPeriod?=?refreshPeriod; ??
- ????} ??
- ??
- ???? //?添加被緩存的對(duì)象; ??
- ???? public ? void ?put(String?key,?Object?value)?{ ??
- ???????? this .putInCache( this .keyPrefix?+? "_" ?+?key,?value); ??
- ????} ??
- ??
- ???? //?刪除被緩存的對(duì)象; ??
- ???? public ? void ?remove(String?key)?{ ??
- ???????? this .flushEntry( this .keyPrefix?+? "_" ?+?key); ??
- ????} ??
- ??
- ???? //?刪除所有被緩存的對(duì)象; ??
- ???? public ? void ?removeAll(Date?date)?{ ??
- ???????? this .flushAll(date); ??
- ????} ??
- ??
- ???? public ? void ?removeAll()?{ ??
- ???????? this .flushAll(); ??
- ????} ??
- ??
- ???? //?獲取被緩存的對(duì)象; ??
- ???? public ?Object?get(String?key)? throws ?Exception?{ ??
- ???????? try ?{ ??
- ???????????? return ? this .getFromCache( this .keyPrefix?+? "_" ?+?key,? this .refreshPeriod); ??
- ????????}? catch ?(NeedsRefreshException?e)?{ ??
- ???????????? this .cancelUpdate( this .keyPrefix?+? "_" ?+?key); ??
- ???????????? throw ?e; ??
- ????????} ??
- ????} ??
- ??
- }??
package com.shoo.test.cache; import java.util.Date; import com.opensymphony.oscache.base.NeedsRefreshException; import com.opensymphony.oscache.general.GeneralCacheAdministrator; public class BaseCache extends GeneralCacheAdministrator { // 過期時(shí)間(單位為秒); private int refreshPeriod; // 關(guān)鍵字前綴字符; private String keyPrefix; private static final long serialVersionUID = -4397192926052141162L; public BaseCache(String keyPrefix, int refreshPeriod) { super(); this.keyPrefix = keyPrefix; this.refreshPeriod = refreshPeriod; } // 添加被緩存的對(duì)象; public void put(String key, Object value) { this.putInCache(this.keyPrefix + "_" + key, value); } // 刪除被緩存的對(duì)象; public void remove(String key) { this.flushEntry(this.keyPrefix + "_" + key); } // 刪除所有被緩存的對(duì)象; public void removeAll(Date date) { this.flushAll(date); } public void removeAll() { this.flushAll(); } // 獲取被緩存的對(duì)象; public Object get(String key) throws Exception { try { return this.getFromCache(this.keyPrefix + "_" + key, this.refreshPeriod); } catch (NeedsRefreshException e) { this.cancelUpdate(this.keyPrefix + "_" + key); throw e; } } }
更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號(hào)聯(lián)系: 360901061
您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對(duì)您有幫助,請(qǐng)用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長(zhǎng)非常感激您!手機(jī)微信長(zhǎng)按不能支付解決辦法:請(qǐng)將微信支付二維碼保存到相冊(cè),切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對(duì)您有幫助就好】元
