kelefa  
          大千世界中,唯一缺乏的就是人類的注意力。
          日歷
          <2025年5月>
          27282930123
          45678910
          11121314151617
          18192021222324
          25262728293031
          1234567
          統計
          • 隨筆 - 11
          • 文章 - 0
          • 評論 - 28
          • 引用 - 0

          導航

          常用鏈接

          留言簿(2)

          隨筆分類

          隨筆檔案

          搜索

          •  

          最新評論

          閱讀排行榜

          評論排行榜

           

          OSCache是OpenSymphony組織提供的一個J2EE架構中Web應用層的緩存技術實現方案,可以使用內存、硬盤空間、同時使用內存和硬盤作為緩存區靈活的緩存系統:OSCache支持多種緩存級別,使用相當靈活簡單,在jsp中刷新緩存只要兩行代碼:


          <% @?taglib?uri = " oscache " ?prefix = " cache " %>

          < cache:flush?group = " device_types " ?scope = " application " ? />

          但是有時需要在java代碼中刷新緩存,以下這個OSCacheUtil類可以工作,但是只能在webwork環境內調用:
          import?javax.servlet.jsp.PageContext;

          import?org.apache.log4j.Logger;
          import?com.opensymphony.oscache.base.Cache;
          import?com.opensymphony.oscache.web.ServletCacheAdministrator;
          import?com.opensymphony.webwork.ServletActionContext;

          /**
          ?*?osCache緩存工具類.
          ?*?只能在webwork環境內調用
          ?*
          ?*?<p>Copyright:?Copyright?(c)?2005</p>
          ?*?<p>Company:?</p>
          ?*?
          @author?楊杰榮
          ?*?
          @version?1.0
          ?
          */

          public?class?OSCacheUtil
          {
          ??
          private?static?final?Logger?log?=?Logger.getLogger(?OSCacheUtil.class?);

          ??
          public?static?final?int?ALL_SCOPE?=?0;
          ??
          public?static?final?int?SESSION_SCOPE?=?PageContext.SESSION_SCOPE;
          ??
          public?static?final?int?APPLICATION_SCOPE?=?PageContext.APPLICATION_SCOPE;

          ??
          private?static?ServletCacheAdministrator?admin?=?null;

          ??
          private?OSCacheUtil()
          ??
          {
          ??}


          ??
          /**
          ???*?刷新osCache組
          ???*?
          @param?group?Cache組名
          ???*?
          @param?cacheScope?Cache范圍,只能是SESSION_SCOPE或APPLICATION_SCOPE
          ???
          */

          ??
          public?static?void?flushGroup(?String?group,?int?cacheScope?)
          ??
          {
          ????initCacheAdmin();

          ????
          if?(?cacheScope?==?SESSION_SCOPE?||?cacheScope?==?APPLICATION_SCOPE?)
          ????
          {
          ??????Cache?cache?
          =?admin.getCache(?ServletActionContext.getRequest(),
          ????????????????????????????????????cacheScope?);
          ??????cache.flushGroup(?group?);
          ????}

          ????
          else
          ????
          {
          ??????log.warn(?
          "A?cache?group?was?specified?for?flushing,?but?the?scope?wasn't?supplied?or?was?invalid"?);
          ????}

          ??}


          ??
          /**
          ???*?刷新osCache中的某個key'
          ???*?
          @param?key?String
          ???*?
          @param?cacheScope?Cache范圍,只能是SESSION_SCOPE或APPLICATION_SCOPE
          ???
          */

          ??
          public?static?void?flushKey(?String?key,?int?cacheScope?)
          ??
          {
          ????initCacheAdmin();

          ????
          if?(?cacheScope?==?SESSION_SCOPE?||?cacheScope?==?APPLICATION_SCOPE?)
          ????
          {
          ??????String?actualKey?
          =?admin.generateEntryKey(
          ??????????key,?ServletActionContext.getRequest(),?cacheScope,?
          null?);

          ??????Cache?cache?
          =?admin.getCache(?ServletActionContext.getRequest(),?cacheScope?);
          ??????cache.flushEntry(?actualKey?);
          ????}

          ????
          else
          ????
          {
          ??????log.warn(?
          "A?cache?key?was?specified?for?flushing,?but?the?scope?wasn't?supplied?or?was?invalid"?);
          ????}

          ??}


          ??
          /**
          ???*?刷新所有的osCache
          ???*?
          @param?cacheScope?Cache范圍,可以是SESSION_SCOPE,APPLICATION_SCOPE,ALL_SCOPE
          ???
          */

          ??
          public?static?void?flushAll(?int?cacheScope?)
          ??
          {
          ????initCacheAdmin();

          ????
          if?(?cacheScope?==?SESSION_SCOPE?||?cacheScope?==?APPLICATION_SCOPE?)
          ????
          {
          ??????admin.setFlushTime(?cacheScope?);
          ????}

          ????
          else
          ????
          {
          ??????admin.flushAll();
          ????}

          ??}



          ??
          private?static?void?initCacheAdmin()
          ??
          {
          ????
          if?(?admin?==?null?)
          ????
          {
          ??????admin?
          =?ServletCacheAdministrator.getInstance(?ServletActionContext.
          ??????????getServletContext()?);
          ????}

          ??}

          }
          posted on 2006-06-29 09:32 楊杰榮 閱讀(1489) 評論(2)  編輯  收藏 所屬分類: 開源應用
          評論:
          • # re: OSCache工具類  pandaxiaoxi Posted @ 2006-07-02 21:36
            問個跟本主題無關的問題,你是怎么在blog上發代碼的,代碼怎么跟在ide里一樣那?看起來很工整,能交交我嗎?呵呵  回復  更多評論   

          • # re: OSCache工具類  楊杰榮 Posted @ 2006-07-03 13:15
            @pandaxiaoxi

            點擊“代碼”圖標,然后粘貼代碼就ok了  回復  更多評論   

           
          Copyright © 楊杰榮 Powered by: 博客園 模板提供:滬江博客
          主站蜘蛛池模板: 宁陕县| 达拉特旗| 成都市| 麦盖提县| 中宁县| 新和县| 新河县| 和平区| 福海县| 吴堡县| 蒲江县| 海口市| 防城港市| 彭泽县| 无极县| 临清市| 额济纳旗| 思南县| 辽阳县| 丹棱县| 若羌县| 宣武区| 都昌县| 枣阳市| 安塞县| 西盟| 普兰店市| 德州市| 灵山县| 台江县| 宁乡县| 巨野县| 商城县| 汨罗市| 甘南县| 赤城县| 神木县| 平阳县| 富宁县| 鹰潭市| 亚东县|