- 授权协议: MIT
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://code.google.com/p/simple-spring-memcached/
软件介绍
Simple-Spring-Memcached (SSM) 提供一个简单的方法为 Spring 的 Bean 启用 memcached 缓存支持,使用时只需要在 Bean 中通过 @Annotation 注释进行声明即可。
示例代码:
@ReadThroughSingleCache(namespace = "ComplexObject", keyIndex = 1, expiration = 300)
public ComplexObject getObjectByPrimaryKey(Long primaryKey) {...}
示例配置:
<bean id="memcachedConnectionBean" class="net.nelz.simplesm.config.MemcachedConnectionBean">
<property name="consistentHashing" value="true" />
<property name="nodeList" value="127.0.0.1:11211 127.0.0.1:11311" />
</bean>
Machine Learning
Kevin Murphy / The MIT Press / 2012-9-18 / USD 90.00
Today's Web-enabled deluge of electronic data calls for automated methods of data analysis. Machine learning provides these, developing methods that can automatically detect patterns in data and then ......一起来看看 《Machine Learning》 这本书的介绍吧!
