有沒有人使用spring簡單的memcached?我一直無法獲得確切的Maven依賴關係和存儲庫。 code.google頁面(http://code.google.com/p/simple-spring-memcached/)中提到的依賴關係提及其他依賴項,但它不包含Simple-spring-memcache本身的jar。spring-simple-memcache - 用於ReadThroughSingleCache的maven依賴關係
感謝您的幫助球員。
有沒有人使用spring簡單的memcached?我一直無法獲得確切的Maven依賴關係和存儲庫。 code.google頁面(http://code.google.com/p/simple-spring-memcached/)中提到的依賴關係提及其他依賴項,但它不包含Simple-spring-memcache本身的jar。spring-simple-memcache - 用於ReadThroughSingleCache的maven依賴關係
感謝您的幫助球員。
在SSM的情況2.0.0你需要還的memcached客戶端(xmemcached或spymemcached):
<dependency>
<groupId>com.google.code.simple-spring-memcached</groupId>
<artifactId>simple-spring-memcached</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>com.googlecode.xmemcached</groupId>
<artifactId>xmemcached</artifactId>
<version>1.3.5</version>
</dependency>
,並配置連接到本地memcached服務器:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
<import resource="simplesm-context.xml" />
<aop:aspectj-autoproxy />
<bean name="defaultMemcachedClient" class="com.google.code.ssm.CacheFactory">
<property name="cacheClientFactory">
<bean class="com.google.code.ssm.providers.xmemcached.MemcacheClientFactoryImpl" />
</property>
<property name="addressProvider">
<bean class="com.google.code.ssm.config.DefaultAddressProvider">
<property name="address" value="127.0.0.1:11211" />
</bean>
</property>
<property name="configuration">
<bean class="com.google.code.ssm.providers.CacheConfiguration">
<property name="consistentHashing" value="true" />
</bean>
</property>
</bean>
</beans>
試試這個:
<dependency>
<groupId>com.google.code.simple-spring-memcached</groupId>
<artifactId>simple-spring-memcached</artifactId>
<version>2.0.0</version>
</dependency>
非常感謝!該頁面現在也已更新。 – gotz 2012-04-19 02:07:35
您需要接受一些答案。 7個問題中你沒有接受答案。 – SamStar 2012-04-19 14:36:58