使用Memcached进行Spring-Hibernate缓存

时间:2013-06-26 11:33:40

标签: spring hibernate caching memcached

我有一个应用程序,其后端是用Spring和Hibernate创建的。

我想应用内存缓存来提高应用程序的可扩展性。起初我认为我可以将hibernate的二级缓存与memcache集成,但问题是应用程序中编写的所有HQL都像book.grade.id,其中Book& Grade是两个独立的实体,因此,二级缓存机制失败。

有人能推荐我实现缓存的方法吗?我看过EHCache但我现在想要Memcache实现。我的应用程序将受到多个服务器的攻击,但只存在1个数据库服务器。鉴于所需的条件,任何建议?

1 个答案:

答案 0 :(得分:0)

下面提到了您可以遵循的步骤。

  1. pom.xml更改为包含使用xmemcache的memcache和客户端实现的抽象缓存机制。

            com.google.code.simple - 弹簧 - 分布式缓存         弹簧缓存         3.1.0     

    <dependency>
        <groupId>com.google.code.simple-spring-memcached</groupId>
        <artifactId>xmemcached-provider</artifactId>
        <version>3.1.0</version>
    </dependency>
    
  2. 注意:您也需要包含cglib,因为这是基于aop的。

    1. configuration.xml文件更改
    2.    **defining beans**
      
          <bean name="cacheManager" class="com.google.code.ssm.spring.SSMCacheManager">
       <property name="caches">
           <set>
               <bean class="com.google.code.ssm.spring.SSMCache">
                   <constructor-arg name="cache" index="0" ref="defaultCache"/>
                   <!-- 5 minutes -->
                   <constructor-arg name="expiration" index="1" value="300"/>
                   <!-- @CacheEvict(..., "allEntries" = true) doesn't work -->
                   <constructor-arg name="allowClear" index="2" value="false"/>
               </bean>
           </set>
       </property>
      
      </bean>
      
      
      <bean name="defaultCache" class="com.google.code.ssm.CacheFactory">
          <property name="cacheName" value="defaultCache" />
          <property name="cacheClientFactory">
              <bean name="cacheClientFactory"
                  class="com.google.code.ssm.providers.xmemcached.MemcacheClientFactoryImpl" />
          </property>
          <property name="addressProvider">
              <bean class="com.google.code.ssm.config.DefaultAddressProvider">
                  <property name="address" value="x.x.x.x:11211" />
              </bean>
          </property>
          <property name="configuration">
              <bean class="com.google.code.ssm.providers.CacheConfiguration">
                  <property name="consistentHashing" value="true" />
              </bean>
          </property>
      
      </bean>
      
      1. 示例方法......

        @Cacheable(value =“defaultCache”,key =“new Integer(#id).toString()。concat('。BOOKVO')”)     public BookVO getBookById(Integer id){

        ... }

      2. 通过此更改,只有在memcache服务器中找不到密钥时,您的方法才会命中数据库。