xid package - github.com/rs/xid - Go Packages

Package xid is a globally unique id generator suited for web scale

Xid is using Mongo Object ID algorithm to generate globally unique ids: https://docs.mongodb.org/manual/reference/object-id/

  • 4-byte value representing the seconds since the Unix epoch,
  • 3-byte machine identifier,
  • 2-byte process id, and
  • 3-byte counter, starting with a random value.

The binary representation of the id is compatible with Mongo 12 bytes Object IDs. The string representation is using base32 hex (w/o padding) for better space efficiency when stored in that form (20 bytes). The hex variant of base32 is used to retain the sortable property of the id.

Xid doesn't use base64 because case sensitivity and the 2 non alphanum chars may be an issue when transported as a string between various systems. Base36 wasn't retained either because 1/ it's not standard 2/ the resulting size is not predictable (not bit aligned) and 3/ it would not remain sortable. To validate a base32 `xid`, expect a 20 chars long, all lowercase sequence of `a` to `v` letters and `0` to `9` numbers (`[0-9a-v]{20}`).

UUID is 16 bytes (128 bits), snowflake is 8 bytes (64 bits), xid stands in between with 12 bytes with a more compact string representation ready for the web and no required configuration or central generation server.

Features:

  • Size: 12 bytes (96 bits), smaller than UUID, larger than snowflake
  • Base32 hex encoded by default (16 bytes storage when transported as printable string)
  • Non configured, you don't need set a unique machine and/or data center id
  • K-ordered
  • Embedded time with 1 second precision
  • Unicity guaranteed for 16,777,216 (24 bits) unique ids per second and per host/process

Best used with xlog's RequestIDHandler (https://godoc.org/github.com/rs/xlog#RequestIDHandler).

References:

View Source

const (
	
	ErrInvalidID strErr = "xid: invalid ID"
)

This section is empty.

Sort sorts an array of IDs inplace. It works by wrapping `[]ID` and use `sort.Sort`.

ID represents a unique request id

FromBytes convert the byte array representation of `ID` back to `ID`

FromString reads an ID from its string representation

New generates a globally unique ID

NewWithTime generates a globally unique ID with the passed in time

NilID returns a zero value for `xid.ID`.

func (id ID) Bytes() []byte

Bytes returns the byte array representation of `ID`

func (id ID) Compare(other ID) int

Compare returns an integer comparing two IDs. It behaves just like `bytes.Compare`. The result will be 0 if two IDs are identical, -1 if current id is less than the other one, and 1 if current id is greater than the other.

func (id ID) Counter() int32

Counter returns the incrementing value part of the id. It's a runtime error to call this method with an invalid id.

Encode encodes the id using base32 encoding, writing 20 bytes to dst and return it.

func (id ID) IsNil() bool

IsNil Returns true if this is a "nil" ID

func (id ID) IsZero() bool

Alias of IsNil

func (id ID) Machine() []byte

Machine returns the 3-byte machine id part of the id. It's a runtime error to call this method with an invalid id.

MarshalJSON implements encoding/json Marshaler interface

MarshalText implements encoding/text TextMarshaler interface

Pid returns the process id part of the id. It's a runtime error to call this method with an invalid id.

func (id *ID) Scan(value interface{}) (err error)

Scan implements the sql.Scanner interface.

String returns a base32 hex lowercased with no padding representation of the id (char set is 0-9, a-v).

Time returns the timestamp part of the id. It's a runtime error to call this method with an invalid id.

UnmarshalJSON implements encoding/json Unmarshaler interface

UnmarshalText implements encoding/text TextUnmarshaler interface

Value implements the driver.Valuer interface.