kelefa  
          大千世界中,唯一缺乏的就是人類的注意力。
          日歷
          <2006年7月>
          2526272829301
          2345678
          9101112131415
          16171819202122
          23242526272829
          303112345
          統(tǒng)計
          • 隨筆 - 11
          • 文章 - 0
          • 評論 - 28
          • 引用 - 0

          導(dǎo)航

          常用鏈接

          留言簿(2)

          隨筆分類

          隨筆檔案

          搜索

          •  

          最新評論

          閱讀排行榜

          評論排行榜

           

          OSCache是OpenSymphony組織提供的一個J2EE架構(gòu)中Web應(yīng)用層的緩存技術(shù)實現(xiàn)方案,可以使用內(nèi)存、硬盤空間、同時使用內(nèi)存和硬盤作為緩存區(qū)靈活的緩存系統(tǒng):OSCache支持多種緩存級別,使用相當(dāng)靈活簡單,在jsp中刷新緩存只要兩行代碼:


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

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

          但是有時需要在java代碼中刷新緩存,以下這個OSCacheUtil類可以工作,但是只能在webwork環(huán)境內(nèi)調(diào)用:
          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環(huán)境內(nèi)調(diào)用
          ?*
          ?*?<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 楊杰榮 閱讀(1490) 評論(2)  編輯  收藏 所屬分類: 開源應(yīng)用
          評論:
          • # re: OSCache工具類  pandaxiaoxi Posted @ 2006-07-02 21:36
            問個跟本主題無關(guān)的問題,你是怎么在blog上發(fā)代碼的,代碼怎么跟在ide里一樣那?看起來很工整,能交交我嗎?呵呵  回復(fù)  更多評論   

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

            點擊“代碼”圖標(biāo),然后粘貼代碼就ok了  回復(fù)  更多評論   

           
          Copyright © 楊杰榮 Powered by: 博客園 模板提供:滬江博客
          主站蜘蛛池模板: 康平县| 海淀区| 大邑县| 洛阳市| 阿坝| 茂名市| 中江县| 自贡市| 彝良县| 嘉兴市| 宿州市| 五原县| 永昌县| 望江县| 社会| 武汉市| 屏东县| 崇阳县| 循化| 龙井市| 沿河| 大余县| 陕西省| 平陆县| 丰顺县| 武乡县| 大冶市| 陆河县| 临高县| 佛山市| 额尔古纳市| 凤冈县| 清河县| 正定县| 浦县| 调兵山市| 福鼎市| 松原市| 伊宁市| 蓝山县| 塔河县|