# gedid **Repository Path**: qiczhu/gedid ## Basic Information - **Project Name**: gedid - **Description**: The Generate distributed id system. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-09-05 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Gedid The Generate distributed id system. ![maven](https://img.shields.io/maven-central/v/cn.zhucongqi/gedid.svg) # features - distributed; - orderly; - thread safety. # How to use? - Step 1: init GedidLoader ```java GedidLoader loader = GedidLoader.init(GedidConfig.defaultConfig()); ``` - Step2: follow business with name ```java Gedid user = loader.follow("user"); ``` - Step3: get business id ```java Long id = user.next(); ```