Tag

uid-generator

0 views collected around this technical thread.

Architect
Architect
Mar 1, 2024 · Backend Development

Distributed ID Generation: Requirements, Common Solutions, and Implementation Details

This article explains what a distributed ID is, outlines its essential requirements such as global uniqueness, high performance, high availability, and ease of use, and then reviews common generation strategies—including database auto‑increment, segment mode, NoSQL approaches, UUID, Snowflake, and several open‑source frameworks—providing code examples and practical trade‑offs.

Databasedistributed IDredis
0 likes · 23 min read
Distributed ID Generation: Requirements, Common Solutions, and Implementation Details
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Jun 30, 2021 · Backend Development

How to Integrate a High‑Performance Snowflake UID Generator into Spring Boot

This guide explains how to integrate the Java‑based Snowflake UIDGenerator into a Spring Boot 2.3 application, covering algorithm fundamentals, RingBuffer optimization, database setup, Maven dependencies, configuration beans, and a test case to generate high‑throughput unique IDs.

JavaSpring Bootdistributed systems
0 likes · 9 min read
How to Integrate a High‑Performance Snowflake UID Generator into Spring Boot
Code Ape Tech Column
Code Ape Tech Column
Mar 10, 2021 · Backend Development

Upgrading Spring Boot 2.x with Java 11 and Integrating Baidu UID Generator

This tutorial walks through upgrading a Spring Boot 2.x project to Java 11, updating dependencies such as MyBatis and MySQL connector, configuring the Baidu UID generator database schema, adjusting MySQL settings, and building a uid‑provider microservice with full Maven and code examples.

BackendJavaSpring Boot
0 likes · 11 min read
Upgrading Spring Boot 2.x with Java 11 and Integrating Baidu UID Generator
macrozheng
macrozheng
Mar 31, 2020 · Backend Development

Mastering Distributed ID Generation: 9 Proven Methods and Their Trade‑offs

This article explains why distributed IDs are essential, outlines the key requirements for a global unique identifier, and compares nine popular generation strategies—including UUID, database auto‑increment, segment mode, Redis, Snowflake, TinyID, Baidu uid‑generator, and Meituan Leaf—detailing their advantages, drawbacks, and sample implementations.

distributed IDleafredis
0 likes · 21 min read
Mastering Distributed ID Generation: 9 Proven Methods and Their Trade‑offs