├── .gitignore
├── LICENSE
├── NOTICE
├── README.md
├── images
├── 2023-11-14-001.png
├── 2023-11-14-005.png
├── 2023-11-14-017.png
├── 2023-11-14-020.png
├── 2023-11-14-021.png
├── 2023-11-14-022.png
├── 2023-11-14-023.png
├── 2023-11-14-024.png
├── 2023-11-14-025.png
├── 2023-11-14-026.png
├── bigdata.png
├── concurrent-001.jpg
├── concurrent-002.png
├── concurrent-003.jpg
├── gongzhonghao.png
├── hacker_binghe.jpg
├── ice_video.png
├── ice_wechat.jpg
├── mysql.png
├── transaction.png
├── xingqiu.png
└── xingqiu_149.png
├── pom.xml
└── src
├── main
├── java
│ └── io
│ │ └── binghe
│ │ └── redis
│ │ ├── SpringRedisStarter.java
│ │ ├── cache
│ │ ├── distribute
│ │ │ ├── DistributeCacheService.java
│ │ │ ├── conversion
│ │ │ │ └── TypeConversion.java
│ │ │ ├── data
│ │ │ │ └── RedisData.java
│ │ │ └── redis
│ │ │ │ └── RedisDistributeCacheService.java
│ │ └── local
│ │ │ ├── LocalCacheService.java
│ │ │ └── guava
│ │ │ ├── factoty
│ │ │ └── LocalGuavaCacheFactory.java
│ │ │ └── impl
│ │ │ └── GuavaLocalCacheService.java
│ │ ├── config
│ │ ├── RedisPoolConfig.java
│ │ └── RedissonConfig.java
│ │ ├── lock
│ │ ├── DistributedLock.java
│ │ ├── factory
│ │ │ └── DistributedLockFactory.java
│ │ └── redisson
│ │ │ └── RedissonLockFactory.java
│ │ ├── semaphore
│ │ ├── DistributedSemaphore.java
│ │ ├── factory
│ │ │ └── DistributedSemaphoreFactory.java
│ │ └── redisson
│ │ │ └── RedissonSemaphoreFactory.java
│ │ └── utils
│ │ └── ThreadPoolUtils.java
└── resources
│ └── application.yml
└── test
└── java
└── io
└── binghe
└── redis
└── test
├── DistributeCacheServiceTest.java
└── bean
└── User.java
/.gitignore:
--------------------------------------------------------------------------------
1 | # maven ignore
2 | target/
3 | *.war
4 | *.zip
5 | *.tar
6 | *.tar.gz
7 |
8 | # eclipse ignore
9 | .settings/
10 | .project
11 | .classpath
12 |
13 | # idea ignore
14 | .idea/
15 | *.ipr
16 | *.iml
17 | *.iws
18 |
19 | # temp ignore
20 | *.log
21 | *.logs
22 | *.cache
23 | *.diff
24 | *.patch
25 | *.tmp
26 | *.java~
27 | *.properties~
28 | *.xml~
29 |
30 | # system ignore
31 | .DS_Store
32 | Thumbs.db
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 |
2 |
3 | Apache License
4 | Version 2.0, January 2004
5 | http://www.apache.org/licenses/
6 |
7 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8 |
9 | 1. Definitions.
10 |
11 | "License" shall mean the terms and conditions for use, reproduction,
12 | and distribution as defined by Sections 1 through 9 of this document.
13 |
14 | "Licensor" shall mean the copyright owner or entity authorized by
15 | the copyright owner that is granting the License.
16 |
17 | "Legal Entity" shall mean the union of the acting entity and all
18 | other entities that control, are controlled by, or are under common
19 | control with that entity. For the purposes of this definition,
20 | "control" means (i) the power, direct or indirect, to cause the
21 | direction or management of such entity, whether by contract or
22 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
23 | outstanding shares, or (iii) beneficial ownership of such entity.
24 |
25 | "You" (or "Your") shall mean an individual or Legal Entity
26 | exercising permissions granted by this License.
27 |
28 | "Source" form shall mean the preferred form for making modifications,
29 | including but not limited to software source code, documentation
30 | source, and configuration files.
31 |
32 | "Object" form shall mean any form resulting from mechanical
33 | transformation or translation of a Source form, including but
34 | not limited to compiled object code, generated documentation,
35 | and conversions to other media types.
36 |
37 | "Work" shall mean the work of authorship, whether in Source or
38 | Object form, made available under the License, as indicated by a
39 | copyright notice that is included in or attached to the work
40 | (an example is provided in the Appendix below).
41 |
42 | "Derivative Works" shall mean any work, whether in Source or Object
43 | form, that is based on (or derived from) the Work and for which the
44 | editorial revisions, annotations, elaborations, or other modifications
45 | represent, as a whole, an original work of authorship. For the purposes
46 | of this License, Derivative Works shall not include works that remain
47 | separable from, or merely link (or bind by name) to the interfaces of,
48 | the Work and Derivative Works thereof.
49 |
50 | "Contribution" shall mean any work of authorship, including
51 | the original version of the Work and any modifications or additions
52 | to that Work or Derivative Works thereof, that is intentionally
53 | submitted to Licensor for inclusion in the Work by the copyright owner
54 | or by an individual or Legal Entity authorized to submit on behalf of
55 | the copyright owner. For the purposes of this definition, "submitted"
56 | means any form of electronic, verbal, or written communication sent
57 | to the Licensor or its representatives, including but not limited to
58 | communication on electronic mailing lists, source code control systems,
59 | and issue tracking systems that are managed by, or on behalf of, the
60 | Licensor for the purpose of discussing and improving the Work, but
61 | excluding communication that is conspicuously marked or otherwise
62 | designated in writing by the copyright owner as "Not a Contribution."
63 |
64 | "Contributor" shall mean Licensor and any individual or Legal Entity
65 | on behalf of whom a Contribution has been received by Licensor and
66 | subsequently incorporated within the Work.
67 |
68 | 2. Grant of Copyright License. Subject to the terms and conditions of
69 | this License, each Contributor hereby grants to You a perpetual,
70 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
71 | copyright license to reproduce, prepare Derivative Works of,
72 | publicly display, publicly perform, sublicense, and distribute the
73 | Work and such Derivative Works in Source or Object form.
74 |
75 | 3. Grant of Patent License. Subject to the terms and conditions of
76 | this License, each Contributor hereby grants to You a perpetual,
77 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
78 | (except as stated in this section) patent license to make, have made,
79 | use, offer to sell, sell, import, and otherwise transfer the Work,
80 | where such license applies only to those patent claims licensable
81 | by such Contributor that are necessarily infringed by their
82 | Contribution(s) alone or by combination of their Contribution(s)
83 | with the Work to which such Contribution(s) was submitted. If You
84 | institute patent litigation against any entity (including a
85 | cross-claim or counterclaim in a lawsuit) alleging that the Work
86 | or a Contribution incorporated within the Work constitutes direct
87 | or contributory patent infringement, then any patent licenses
88 | granted to You under this License for that Work shall terminate
89 | as of the date such litigation is filed.
90 |
91 | 4. Redistribution. You may reproduce and distribute copies of the
92 | Work or Derivative Works thereof in any medium, with or without
93 | modifications, and in Source or Object form, provided that You
94 | meet the following conditions:
95 |
96 | (a) You must give any other recipients of the Work or
97 | Derivative Works a copy of this License; and
98 |
99 | (b) You must cause any modified files to carry prominent notices
100 | stating that You changed the files; and
101 |
102 | (c) You must retain, in the Source form of any Derivative Works
103 | that You distribute, all copyright, patent, trademark, and
104 | attribution notices from the Source form of the Work,
105 | excluding those notices that do not pertain to any part of
106 | the Derivative Works; and
107 |
108 | (d) If the Work includes a "NOTICE" text file as part of its
109 | distribution, then any Derivative Works that You distribute must
110 | include a readable copy of the attribution notices contained
111 | within such NOTICE file, excluding those notices that do not
112 | pertain to any part of the Derivative Works, in at least one
113 | of the following places: within a NOTICE text file distributed
114 | as part of the Derivative Works; within the Source form or
115 | documentation, if provided along with the Derivative Works; or,
116 | within a display generated by the Derivative Works, if and
117 | wherever such third-party notices normally appear. The contents
118 | of the NOTICE file are for informational purposes only and
119 | do not modify the License. You may add Your own attribution
120 | notices within Derivative Works that You distribute, alongside
121 | or as an addendum to the NOTICE text from the Work, provided
122 | that such additional attribution notices cannot be construed
123 | as modifying the License.
124 |
125 | You may add Your own copyright statement to Your modifications and
126 | may provide additional or different license terms and conditions
127 | for use, reproduction, or distribution of Your modifications, or
128 | for any such Derivative Works as a whole, provided Your use,
129 | reproduction, and distribution of the Work otherwise complies with
130 | the conditions stated in this License.
131 |
132 | 5. Submission of Contributions. Unless You explicitly state otherwise,
133 | any Contribution intentionally submitted for inclusion in the Work
134 | by You to the Licensor shall be under the terms and conditions of
135 | this License, without any additional terms or conditions.
136 | Notwithstanding the above, nothing herein shall supersede or modify
137 | the terms of any separate license agreement you may have executed
138 | with Licensor regarding such Contributions.
139 |
140 | 6. Trademarks. This License does not grant permission to use the trade
141 | names, trademarks, service marks, or product names of the Licensor,
142 | except as required for reasonable and customary use in describing the
143 | origin of the Work and reproducing the content of the NOTICE file.
144 |
145 | 7. Disclaimer of Warranty. Unless required by applicable law or
146 | agreed to in writing, Licensor provides the Work (and each
147 | Contributor provides its Contributions) on an "AS IS" BASIS,
148 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
149 | implied, including, without limitation, any warranties or conditions
150 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
151 | PARTICULAR PURPOSE. You are solely responsible for determining the
152 | appropriateness of using or redistributing the Work and assume any
153 | risks associated with Your exercise of permissions under this License.
154 |
155 | 8. Limitation of Liability. In no event and under no legal theory,
156 | whether in tort (including negligence), contract, or otherwise,
157 | unless required by applicable law (such as deliberate and grossly
158 | negligent acts) or agreed to in writing, shall any Contributor be
159 | liable to You for damages, including any direct, indirect, special,
160 | incidental, or consequential damages of any character arising as a
161 | result of this License or out of the use or inability to use the
162 | Work (including but not limited to damages for loss of goodwill,
163 | work stoppage, computer failure or malfunction, or any and all
164 | other commercial damages or losses), even if such Contributor
165 | has been advised of the possibility of such damages.
166 |
167 | 9. Accepting Warranty or Additional Liability. While redistributing
168 | the Work or Derivative Works thereof, You may choose to offer,
169 | and charge a fee for, acceptance of support, warranty, indemnity,
170 | or other liability obligations and/or rights consistent with this
171 | License. However, in accepting such obligations, You may act only
172 | on Your own behalf and on Your sole responsibility, not on behalf
173 | of any other Contributor, and only if You agree to indemnify,
174 | defend, and hold each Contributor harmless for any liability
175 | incurred by, or claims asserted against, such Contributor by reason
176 | of your accepting any such warranty or additional liability.
177 |
178 | END OF TERMS AND CONDITIONS
179 |
180 | APPENDIX: How to apply the Apache License to your work.
181 |
182 | To apply the Apache License to your work, attach the following
183 | boilerplate notice, with the fields enclosed by brackets "[]"
184 | replaced with your own identifying information. (Don't include
185 | the brackets!) The text should be enclosed in the appropriate
186 | comment syntax for the file format. We also recommend that a
187 | file or class name and description of purpose be included on the
188 | same "printed page" as the copyright notice for easier
189 | identification within third-party archives.
190 |
191 | Copyright [yyyy] [name of copyright owner]
192 |
193 | Licensed under the Apache License, Version 2.0 (the "License");
194 | you may not use this file except in compliance with the License.
195 | You may obtain a copy of the License at
196 |
197 | http://www.apache.org/licenses/LICENSE-2.0
198 |
199 | Unless required by applicable law or agreed to in writing, software
200 | distributed under the License is distributed on an "AS IS" BASIS,
201 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
202 | See the License for the specific language governing permissions and
203 | limitations under the License.
204 |
--------------------------------------------------------------------------------
/NOTICE:
--------------------------------------------------------------------------------
1 | Copyright 2018-yyyy 冰河.
2 |
3 | Licensed under the Apache License, Version 2.0 (the "License");
4 | you may not use this file except in compliance with the License.
5 | You may obtain a copy of the License at
6 |
7 | http://www.apache.org/licenses/LICENSE-2.0
8 |
9 | Unless required by applicable law or agreed to in writing, software
10 | distributed under the License is distributed on an "AS IS" BASIS,
11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 | See the License for the specific language governing permissions and
13 | limitations under the License.
14 |
15 | ================================================================
16 | Dependencies:
17 |
18 | Spring:
19 |
20 | * LICENSE:
21 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
22 | * HOMEPAGE:
23 | * http://www.springsource.org
24 |
25 | Javassist:
26 |
27 | * LICENSE:
28 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
29 | * HOMEPAGE:
30 | * http://www.jboss.org/javassist
31 |
32 | Netty:
33 |
34 | * LICENSE:
35 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
36 | * HOMEPAGE:
37 | * http://netty.io
38 |
39 | Mina:
40 |
41 | * LICENSE:
42 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
43 | * HOMEPAGE:
44 | * http://mina.apache.org
45 |
46 | Grizzly:
47 |
48 | * LICENSE:
49 | * http://www.gnu.org/licenses/gpl-2.0.html (General Public License 2.0)
50 | * HOMEPAGE:
51 | * http://grizzly.java.net
52 |
53 | HttpClient:
54 |
55 | * LICENSE:
56 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
57 | * HOMEPAGE:
58 | * http://hc.apache.org
59 |
60 | Hessian:
61 |
62 | * LICENSE:
63 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
64 | * HOMEPAGE:
65 | * http://hessian.caucho.com
66 |
67 | XStream:
68 |
69 | * LICENSE:
70 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
71 | * HOMEPAGE:
72 | * http://xstream.codehaus.org
73 |
74 | FastJson:
75 |
76 | * LICENSE:
77 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
78 | * HOMEPAGE:
79 | * http://code.alibabatech.com/wiki/fastjson
80 |
81 | Zookeeper:
82 |
83 | * LICENSE:
84 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
85 | * HOMEPAGE:
86 | * http://zookeeper.apache.org
87 |
88 | Jedis:
89 |
90 | * LICENSE:
91 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
92 | * HOMEPAGE:
93 | * http://code.google.com/p/jedis
94 |
95 | XMemcached:
96 |
97 | * LICENSE:
98 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
99 | * HOMEPAGE:
100 | * http://code.google.com/p/xmemcached
101 |
102 | Jetty:
103 |
104 | * LICENSE:
105 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
106 | * HOMEPAGE:
107 | * http://jetty.mortbay.org
108 |
109 | Thrift:
110 |
111 | * LICENSE:
112 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
113 | * HOMEPAGE:
114 | * http://thrift.apache.org
115 |
116 | CXF:
117 |
118 | * LICENSE:
119 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
120 | * HOMEPAGE:
121 | * http://cxf.apache.org
122 |
123 | ZKClient:
124 |
125 | * LICENSE:
126 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
127 | * HOMEPAGE:
128 | * https://github.com/sgroschupf/zkclient
129 |
130 | Curator
131 |
132 | * LICENSE:
133 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
134 | * HOMEPAGE:
135 | * https://github.com/Netflix/curator
136 |
137 | JFreeChart:
138 |
139 | * LICENSE:
140 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
141 | * HOMEPAGE:
142 | * http://www.jfree.org
143 |
144 | HibernateValidator:
145 |
146 | * LICENSE:
147 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
148 | * HOMEPAGE:
149 | * http://www.hibernate.org/subprojects/validator.html
150 |
151 | CommonsLogging:
152 |
153 | * LICENSE:
154 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
155 | * HOMEPAGE:
156 | * http://commons.apache.org/logging
157 |
158 | SLF4J:
159 |
160 | * LICENSE:
161 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
162 | * HOMEPAGE:
163 | * http://www.slf4j.org
164 |
165 | Log4j:
166 |
167 | * LICENSE:
168 | * http://www.apache.org/licenses/LICENSE-2.0 (Apache License 2.0)
169 | * HOMEPAGE:
170 | * http://log4j.apache.org
171 |
--------------------------------------------------------------------------------
/images/2023-11-14-001.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/2023-11-14-001.png
--------------------------------------------------------------------------------
/images/2023-11-14-005.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/2023-11-14-005.png
--------------------------------------------------------------------------------
/images/2023-11-14-017.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/2023-11-14-017.png
--------------------------------------------------------------------------------
/images/2023-11-14-020.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/2023-11-14-020.png
--------------------------------------------------------------------------------
/images/2023-11-14-021.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/2023-11-14-021.png
--------------------------------------------------------------------------------
/images/2023-11-14-022.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/2023-11-14-022.png
--------------------------------------------------------------------------------
/images/2023-11-14-023.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/2023-11-14-023.png
--------------------------------------------------------------------------------
/images/2023-11-14-024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/2023-11-14-024.png
--------------------------------------------------------------------------------
/images/2023-11-14-025.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/2023-11-14-025.png
--------------------------------------------------------------------------------
/images/2023-11-14-026.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/2023-11-14-026.png
--------------------------------------------------------------------------------
/images/bigdata.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/bigdata.png
--------------------------------------------------------------------------------
/images/concurrent-001.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/concurrent-001.jpg
--------------------------------------------------------------------------------
/images/concurrent-002.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/concurrent-002.png
--------------------------------------------------------------------------------
/images/concurrent-003.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/concurrent-003.jpg
--------------------------------------------------------------------------------
/images/gongzhonghao.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/gongzhonghao.png
--------------------------------------------------------------------------------
/images/hacker_binghe.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/hacker_binghe.jpg
--------------------------------------------------------------------------------
/images/ice_video.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/ice_video.png
--------------------------------------------------------------------------------
/images/ice_wechat.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/ice_wechat.jpg
--------------------------------------------------------------------------------
/images/mysql.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/mysql.png
--------------------------------------------------------------------------------
/images/transaction.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/transaction.png
--------------------------------------------------------------------------------
/images/xingqiu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/xingqiu.png
--------------------------------------------------------------------------------
/images/xingqiu_149.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/binghe001/spring-redis/2d6e86d8c0ee545122f31bce3f250eb667816793/images/xingqiu_149.png
--------------------------------------------------------------------------------
/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 4.0.0
6 |
7 | io.binghe.redis
8 | spring-redis
9 | 1.0.0-SNAPSHOT
10 |
11 |
12 | 8
13 | 8
14 | UTF-8
15 | 2.7.5
16 | 3.16.3
17 | 30.1-jre
18 | 5.4.0
19 |
20 |
21 |
22 | org.springframework.boot
23 | spring-boot-starter-parent
24 | 2.7.5
25 |
26 |
27 |
28 |
29 |
30 | org.springframework.boot
31 | spring-boot-starter-web
32 |
33 |
34 |
35 | org.springframework.boot
36 | spring-boot-starter-test
37 |
38 |
39 |
40 | org.springframework.boot
41 | spring-boot-starter-data-redis
42 |
43 |
44 |
45 | org.redisson
46 | redisson
47 | ${redisson.version}
48 |
49 |
50 |
51 | com.google.guava
52 | guava
53 | ${guava.version}
54 |
55 |
56 |
57 | cn.hutool
58 | hutool-all
59 | ${hutool.version}
60 |
61 |
62 |
63 | org.apache.commons
64 | commons-pool2
65 |
66 |
67 |
68 | junit
69 | junit
70 | test
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 | org.springframework.boot
79 | spring-boot-dependencies
80 | ${spring-boot.version}
81 | pom
82 | import
83 |
84 |
85 |
86 |
87 |
--------------------------------------------------------------------------------
/src/main/java/io/binghe/redis/SpringRedisStarter.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright 2022-9999 the original author or authors.
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | */
16 | package io.binghe.redis;
17 |
18 | import io.binghe.redis.utils.ThreadPoolUtils;
19 | import org.springframework.boot.SpringApplication;
20 | import org.springframework.boot.autoconfigure.SpringBootApplication;
21 |
22 | /**
23 | * @author binghe(微信 : hacker_binghe)
24 | * @version 1.0.0
25 | * @description 启动类
26 | * @github https://github.com/binghe001
27 | * @copyright 公众号: 冰河技术
28 | */
29 | @SpringBootApplication
30 | public class SpringRedisStarter {
31 |
32 | public static void main(String[] args) {
33 | Runtime.getRuntime().addShutdownHook(new Thread(() -> {
34 | ThreadPoolUtils.shutdown();
35 | }));
36 | SpringApplication.run(SpringRedisStarter.class, args);
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/src/main/java/io/binghe/redis/cache/distribute/DistributeCacheService.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright 2022-9999 the original author or authors.
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | */
16 | package io.binghe.redis.cache.distribute.conversion;
17 |
18 | import cn.hutool.core.convert.Convert;
19 | import cn.hutool.core.thread.lock.LockUtil;
20 | import cn.hutool.json.JSONUtil;
21 |
22 | import java.util.Collection;
23 |
24 | /**
25 | * @author binghe(微信 : hacker_binghe)
26 | * @version 1.0.0
27 | * @description 类型转换
28 | * @github https://github.com/binghe001
29 | * @copyright 公众号: 冰河技术
30 | */
31 | public class TypeConversion {
32 | public static boolean isCollectionType(T t){
33 | return t instanceof Collection;
34 | }
35 |
36 | /**
37 | * 简单字符串和基本类型统称为简单类型
38 | */
39 | public static boolean isSimpleType(T t){
40 | return isSimpleString(t) || isInt(t) || isLong(t) || isDouble(t) || isFloat(t) || isChar(t) || isBoolean(t) || isShort(t) || isByte(t);
41 | }
42 |
43 | public static boolean isSimpleString(T t){
44 | if (t == null || !isString(t)){
45 | return false;
46 | }
47 | return !JSONUtil.isJson(t.toString());
48 | }
49 |
50 | public static boolean isString(T t) {
51 | return t instanceof String;
52 | }
53 |
54 | public static boolean isByte(T t) {
55 | return t instanceof Byte;
56 | }
57 |
58 | public static boolean isShort(T t) {
59 | return t instanceof Short;
60 | }
61 |
62 | public static boolean isInt(T t) {
63 | return t instanceof Integer;
64 | }
65 |
66 | public static boolean isLong(T t) {
67 | return t instanceof Long;
68 | }
69 |
70 | public static boolean isChar(T t) {
71 | return t instanceof Character;
72 | }
73 |
74 | public static boolean isFloat(T t) {
75 | return t instanceof Float;
76 | }
77 |
78 | public static boolean isDouble(T t) {
79 | return t instanceof Double;
80 | }
81 |
82 | public static boolean isBoolean(T t) {
83 | return t instanceof Boolean;
84 | }
85 |
86 | public static Class> getClassType(T t) {
87 | return t.getClass();
88 | }
89 |
90 | public static R convertor(String str, Class type){
91 | return Convert.convert(type, str);
92 | }
93 | }
94 |
--------------------------------------------------------------------------------
/src/main/java/io/binghe/redis/cache/distribute/data/RedisData.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright 2022-9999 the original author or authors.
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | */
16 | package io.binghe.redis.cache.distribute.data;
17 |
18 | import java.time.LocalDateTime;
19 |
20 | /**
21 | * @author binghe(微信 : hacker_binghe)
22 | * @version 1.0.0
23 | * @description 缓存到Redis中的数据,主要配合使用数据的逻辑过期
24 | * @github https://github.com/binghe001
25 | * @copyright 公众号: 冰河技术
26 | */
27 | public class RedisData {
28 | //实际业务数据
29 | private Object data;
30 | //过期时间点
31 | private LocalDateTime expireTime;
32 |
33 | public RedisData() {
34 | }
35 |
36 | public RedisData(Object data, LocalDateTime expireTime) {
37 | this.data = data;
38 | this.expireTime = expireTime;
39 | }
40 |
41 | public Object getData() {
42 | return data;
43 | }
44 |
45 | public void setData(Object data) {
46 | this.data = data;
47 | }
48 |
49 | public LocalDateTime getExpireTime() {
50 | return expireTime;
51 | }
52 |
53 | public void setExpireTime(LocalDateTime expireTime) {
54 | this.expireTime = expireTime;
55 | }
56 | }
57 |
--------------------------------------------------------------------------------
/src/main/java/io/binghe/redis/cache/distribute/redis/RedisDistributeCacheService.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright 2022-9999 the original author or authors.
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | */
16 | package io.binghe.redis.cache.local;
17 |
18 | /**
19 | * @author binghe(微信 : hacker_binghe)
20 | * @version 1.0.0
21 | * @description 本地缓存接口
22 | * @github https://github.com/binghe001
23 | * @copyright 公众号: 冰河技术
24 | */
25 | public interface LocalCacheService {
26 | /**
27 | * 向缓存中添加数据
28 | * @param key 缓存的key
29 | * @param value 缓存的value
30 | */
31 | void put(K key, V value);
32 |
33 | /**
34 | * 根据key从缓存中查询数据
35 | * @param key 缓存的key
36 | * @return 缓存的value值
37 | */
38 | V getIfPresent(Object key);
39 |
40 | /**
41 | * 移除缓存中的数据
42 | * @param key 缓存的key
43 | */
44 | void remove(K key);
45 | }
46 |
--------------------------------------------------------------------------------
/src/main/java/io/binghe/redis/cache/local/guava/factoty/LocalGuavaCacheFactory.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright 2022-9999 the original author or authors.
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | */
16 | package io.binghe.redis.cache.local.guava.factoty;
17 |
18 | import com.google.common.cache.Cache;
19 | import com.google.common.cache.CacheBuilder;
20 |
21 | import java.util.concurrent.TimeUnit;
22 |
23 | /**
24 | * @author binghe(微信 : hacker_binghe)
25 | * @version 1.0.0
26 | * @description 基于Guava的本地缓存工厂类
27 | * @github https://github.com/binghe001
28 | * @copyright 公众号: 冰河技术
29 | */
30 | public class LocalGuavaCacheFactory {
31 |
32 | public static Cache getLocalCache(){
33 | return CacheBuilder.newBuilder().initialCapacity(200).concurrencyLevel(5).expireAfterWrite(300, TimeUnit.SECONDS).build();
34 | }
35 |
36 | public static Cache getLocalCache(long duration){
37 | return CacheBuilder.newBuilder().initialCapacity(200).concurrencyLevel(5).expireAfterWrite(duration, TimeUnit.SECONDS).build();
38 | }
39 |
40 | public static Cache getLocalCache(int initialCapacity, long duration){
41 | return CacheBuilder.newBuilder().initialCapacity(initialCapacity).concurrencyLevel(5).expireAfterWrite(duration, TimeUnit.SECONDS).build();
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/src/main/java/io/binghe/redis/cache/local/guava/impl/GuavaLocalCacheService.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright 2022-9999 the original author or authors.
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | */
16 | package io.binghe.redis.cache.local.guava.impl;
17 |
18 | import com.google.common.cache.Cache;
19 | import io.binghe.redis.cache.local.LocalCacheService;
20 | import io.binghe.redis.cache.local.guava.factoty.LocalGuavaCacheFactory;
21 | import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
22 | import org.springframework.stereotype.Component;
23 | import org.springframework.stereotype.Service;
24 |
25 | /**
26 | * @author binghe(微信 : hacker_binghe)
27 | * @version 1.0.0
28 | * @description 基于Guava实现的本地缓存
29 | * @github https://github.com/binghe001
30 | * @copyright 公众号: 冰河技术
31 | */
32 | @Component
33 | @ConditionalOnProperty(name = "cache.type.local", havingValue = "guava")
34 | public class GuavaLocalCacheService implements LocalCacheService {
35 | //本地缓存,基于Guava实现
36 | private final Cache cache = LocalGuavaCacheFactory.getLocalCache();
37 |
38 | @Override
39 | public void put(K key, V value) {
40 | cache.put(key, value);
41 | }
42 |
43 | @Override
44 | public V getIfPresent(Object key) {
45 | return cache.getIfPresent(key);
46 | }
47 |
48 | @Override
49 | public void remove(K key) {
50 | cache.invalidate(key);
51 | }
52 | }
53 |
--------------------------------------------------------------------------------
/src/main/java/io/binghe/redis/config/RedisPoolConfig.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright 2022-9999 the original author or authors.
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *