Go实战--golang生成uuid(The way to go)

生命不止,继续 go go go !!!

在做server开发的时候,难免用到uuid,这里与大家分享一下golang中如何生成uuid。

什么是uuid?

uuid是Universally Unique Identifier的缩写,即通用唯一识别码。

uuid的目的是让分布式系统中的所有元素,都能有唯一的辨识资讯,而不需要透过中央控制端来做辨识资讯的指定。如此一来,每个人都可以建立不与其它人冲突的 uuid。

A universally unique identifier (UUID) is a 128-bit number used to identify information in computer systems.

例如java中生成uuid:

package com.mytest;
import java.util.UUID;
public class UTest {
   
     
    public static void main(String[] a

你可能感兴趣的:(Go从不放弃到实战,go,uuid)