内容简介:J2Cache 2.7.0 在周末悄没声息的发布了!!!该版本支持使用Lettuce 替代 Jedis 连接 Redis ,目前二者并存,以后的版本可能会考虑直接替换掉Jedis 。我之前不喜欢 Lettuce 是因为它依赖了一个大的第三方包 —— Netty 。但是从使用角度来看,用 Lettuce 的代码量要比 Jedis 小很多。而且 Spring Config 相关项目也是使用 Lettuce 。如果想在 J2Cache 中使用 Lettuce 的话,需要指定二级缓存:
J2Cache 2.7.0 在周末悄没声息的发布了!!!
该版本支持使用Lettuce 替代 Jedis 连接 Redis ,目前二者并存,以后的版本可能会考虑直接替换掉Jedis 。我之前不喜欢 Lettuce 是因为它依赖了一个大的第三方包 —— Netty 。但是从使用角度来看,用 Lettuce 的代码量要比 Jedis 小很多。而且 Spring Config 相关项目也是使用 Lettuce 。
如果想在 J2Cache 中使用 Lettuce 的话,需要指定二级缓存:
j2cache.L2.provider_class = lettuce
相关配置信息:
lettuce.namespace = lettuce.storage = generic lettuce.channel = j2cache lettuce.scheme = redis lettuce.hosts = 127.0.0.1:6379 lettuce.password = lettuce.database = 0 lettuce.sentinelMasterId =
此外,该版本还修复了一个重要的 Bug ,该 Bug 导致多次调用 getChannel() 会产生错误的行为。
强烈建议用户升级到该版本!
Maven
<dependency> <groupId>net.oschina.j2cache</groupId> <artifactId>j2cache-core</artifactId> <version>2.7.0-release</version> </dependency>
同时 J2Cache 的分布式 session 管理模块 session-manager 也升级到了 1.0.0.beta3 版本。
如果你觉得这个项目有用,请给 https://gitee.com/ld/J2Cache 点个赞。
很多人并不清楚 J2Cache 和普通缓存框架有何不同,它解决了什么问题? 那么你可以看看这篇博客 https://my.oschina.net/javayou/blog/1931381
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- J2Cache 2.7.0 发布了,支持 Lettuce 替代 Jedis
- PyPy 7.0 发布,现在支持Alpha 3.6的替代Python解释器
- Flash 替代者 PiXiJS 为交互式 App 提供跨平台 WebGL 支持
- Postwoman 替代 Postman
- JSX的替代品[译]
- [译]JSX的替代品
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Introduction to Programming in Java
Robert Sedgewick、Kevin Wayne / Addison-Wesley / 2007-7-27 / USD 89.00
By emphasizing the application of computer programming not only in success stories in the software industry but also in familiar scenarios in physical and biological science, engineering, and appli......一起来看看 《Introduction to Programming in Java》 这本书的介绍吧!