高性能高并发的生成唯一的Id

可以吗?

int TimeWheel::GenerateTimerID()
{
    int x = rand() % 0xffffffff;
    int cur_time = time(nullptr);
    return x | cur_time | _timer_count;
}

int TimeWheel::AddTimer(int interval)
{
    timer_id = GenerateTimerID();
    _timer_count++;
    return timer_id;
}

 

高性能分布式自增id生成器lid

https://github.com/alberliu/lid

Leaf——美团点评分布式ID生成系统

如何快速开发一个支持高效、高并发的分布式ID生成器

 

你可能感兴趣的:(高性能高并发的生成唯一的Id)