- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://gitee.com/ld/J2Cache
- 软件文档: http://www.oschina.net/question/12_140335
软件介绍
J2Cache 是 OSChina 目前正在使用的两级缓存框架。第一级缓存使用 Ehcache,第二级缓存使用 Redis 。由于大量的缓存读取会导致 L2 的网络成为整个系统的瓶颈,因此 L1 的目标是降低对 L2 的读取次数。该缓存框架主要用于集群环境中。单机也可使用,用于避免应用重启导致的 Ehcache 缓存数据丢失。
J2Cache 的 Python 实现版本 —— Py3Cache
J2Cache 使用 JGroups 进行组播通讯。
J2Cache 介绍 PPT:http://www.oschina.net/doc/652
J2Cache JavaDoc: https://apidoc.gitee.com/ld/J2Cache/
视频介绍:http://v.youku.com/v_show/id_XNzAzMTY5MjUy.html
Maven:
net.oschina.j2cache j2cache-core 版本号
示例代码:
CacheChannel cache = J2Cache.getChannel();
cache.set("cache1","key1","OSChina.net");
cache.get("cache1","key1");
测试方法:
-
安装 Redis
-
修改 core/Java/j2cache.properties 配置使用已安装的 Redis 服务器
-
执行 build.sh 进行项目编译
-
运行多个 runtest.sh
-
直接在 runtest 输入多个命令进行测试
An Introduction to Probability Theory and Its Applications
William Feller / Wiley / 1991-1-1 / USD 120.00
Major changes in this edition include the substitution of probabilistic arguments for combinatorial artifices, and the addition of new sections on branching processes, Markov chains, and the De Moivre......一起来看看 《An Introduction to Probability Theory and Its Applications》 这本书的介绍吧!
