目录简介:特性:生成规则: ID生成类:测试类:简介: 全局唯一ID生成器是一种在分布式系统下用来生成全局唯一ID的工具 特性: 唯一性高性能安全性高可用递增性 生成规则:
全局唯一ID生成器是一种在分布式系统下用来生成全局唯一ID的工具
有时为了增加ID的安全性,我们可以不直接使用Redis自增的数值,而是拼接一些其他信息
ID组成部分:
package com.example.util;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.stereotype.Component;
import java.time.LocalDateTime;
import java.time.ZoneOffset;
import java.time.fORMat.DateTimeFormatter;
@Component
public class RedisIDWorker {
private static final long BEGIN_TIMESTAMP = 1640995200L;
private static final int COUNT_BITS = 32;
private StringRedisTemplate stringRedisTemplate;
public RedisIDWorker(StringRedisTemplate stringRedisTemplate) {
this.stringRedisTemplate = stringRedisTemplate;
}
public long nextID(String keyPrefix) {
//1、生成时间戳
LocalDateTime now = LocalDateTime.now();
long nowScond = now.toEpochSecond(ZoneOffset.UTC);
long timestamp = nowScond - BEGIN_TIMESTAMP;
//2、生成序列号
// 2.1 获取当前日期,精确到天
String date = now.format(DateTimeFormatter.ofPattern("yyyy:MM:dd"));
long count = stringRedisTemplate.opsForValue().increment("icr" + keyPrefix + ":" + date);
//3、拼接字符串
// 时间戳左移32位,然后 或 序列号,有1为1
long ids = timestamp << COUNT_BITS | count;
return ids;
}
@Resource
RedisIDWorker redisIDWorker;
private ExecutorService es = Executors.newFixedThreadPool(500);
@Test
public void ShowID() throws InterruptedException {
CountDownLatch countDownLatch = new CountDownLatch(300);
Runnable task = () -> {
for (int i = 0; i < 100; i++) {
long id = redisIDWorker.nextID("order");
System.out.println("id = " + id);
}
countDownLatch.countDown();
};
long startTime = System.currentTimeMillis();
for (int i = 0; i < 300; i++) {
es.submit(task);
}
countDownLatch.await();
long end = System.currentTimeMillis();
System.out.println("time = " + (end - startTime));
}
到此这篇关于Redis生成全局唯一ID的实现方法的文章就介绍到这了,更多相关Redis生成全局唯一ID内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: Redis生成全局唯一ID的实现方法
本文链接: https://lsjlt.com/news/151012.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0