File tree Expand file tree Collapse file tree
weixin-java-common/src/main/java/me/chanjar/weixin/common/redis Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11package me .chanjar .weixin .common .redis ;
22
3+ import com .github .jedis .lock .JedisLock ;
34import lombok .RequiredArgsConstructor ;
45import me .chanjar .weixin .common .util .locks .JedisDistributedLock ;
56import redis .clients .jedis .Jedis ;
89import java .util .concurrent .TimeUnit ;
910import java .util .concurrent .locks .Lock ;
1011
12+ /**
13+ * @author Mario Luo
14+ *
15+ * @deprecated 该类底层使用过时的8年不维护的 {@link JedisLock}组件,不可靠,不建议继续使用。请
16+ * 使用:{@link RedisTemplateWxRedisOps}、{@link RedissonWxRedisOps} 替换
17+ */
1118@ RequiredArgsConstructor
1219public class JedisWxRedisOps implements WxRedisOps {
1320 private final Pool <Jedis > jedisPool ;
Original file line number Diff line number Diff line change 88 * <p>
99 * 该接口不承诺稳定, 外部实现请继承{@link BaseWxRedisOps}
1010 *
11+ * @author Mario Luo
1112 * @see BaseWxRedisOps 实现需要继承该类
1213 * @see JedisWxRedisOps jedis实现
1314 * @see RedissonWxRedisOps redisson实现
You can’t perform that action at this time.
0 commit comments