3 Commits

Author SHA1 Message Date
老马啸西风
9ef657d0ba Update README.md 2022-12-08 14:19:12 +08:00
binbin.hou
0f9ce0441e [Feature] add for new 2022-12-08 14:02:18 +08:00
binbin.hou
bc1fd8fc71 [Feature] add for new 2022-12-08 13:53:21 +08:00

View File

@@ -1,11 +1,13 @@
# 项目简介 # 项目简介
[lock](https://github.com/houbb/lock) 为 java 设计的分布式锁。 [lock](https://github.com/houbb/lock) 为 java 设计的分布式锁,开箱即用,纵享丝滑
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.houbb/lock/badge.svg)](http://mvnrepository.com/artifact/com.github.houbb/lock) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.houbb/lock/badge.svg)](http://mvnrepository.com/artifact/com.github.houbb/lock)
[![Build Status](https://www.travis-ci.org/houbb/lock.svg?branch=master)](https://www.travis-ci.org/houbb/lock?branch=master) [![Build Status](https://www.travis-ci.org/houbb/lock.svg?branch=master)](https://www.travis-ci.org/houbb/lock?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/houbb/lock/badge.svg?branch=master)](https://coveralls.io/github/houbb/lock?branch=master) [![Coverage Status](https://coveralls.io/repos/github/houbb/lock/badge.svg?branch=master)](https://coveralls.io/github/houbb/lock?branch=master)
开源地址:[https://github.com/houbb/lock](https://github.com/houbb/lock)
## 目的 ## 目的
- 开箱即用,支持注解式和过程式调用 - 开箱即用,支持注解式和过程式调用
@@ -14,6 +16,8 @@
- 内置支持多种 redis 的整合方式 - 内置支持多种 redis 的整合方式
- 渐进式设计,可独立于 spring 使用
- 整合 spring - 整合 spring
- 整合 spring-boot - 整合 spring-boot
@@ -259,3 +263,23 @@ public @interface Lock {
持有锁的线程可以多次获取锁 持有锁的线程可以多次获取锁
- [x] 分布式锁注解支持 - [x] 分布式锁注解支持
# 拓展阅读
[Redis 分布式锁](https://houbb.github.io/2018/09/08/redis-learn-42-distributed-lock-redis)
[java 从零实现 redis 分布式锁](https://houbb.github.io/2018/09/08/redis-learn-43-distributed-lock-redis-java-impl)
# 缓存相关工具
[cache: 手写渐进式 redis](https://github.com/houbb/cache)
[common-cache: 通用缓存标准定义](https://github.com/houbb/common-cache)
[redis-config: 兼容各种常见的 redis 配置模式](https://github.com/houbb/redis-config)
[lock: 开箱即用的分布式锁](https://github.com/houbb/lock)
[resubmit: 防重复提交](https://github.com/houbb/resubmit)
[rate-limit: 限流](https://github.com/houbb/rate-limit/)