Giter Site home page Giter Site logo

machiko / instauuid Goto Github PK

View Code? Open in Web Editor NEW

This project forked from therne/instauuid

0.0 1.0 0.0 11 KB

Instagram-Style Compact UUID generator library for Node.js

Home Page: https://npmjs.com/package/instauuid

License: MIT License

C++ 28.75% JavaScript 61.07% Python 10.18%

instauuid's Introduction

InstaUUID

NPM Version Node.js Version NPM Downloads

See Instagram Engineering Blog - Sharding IDs at Instagram

Instagram-Style Compact UUID generator for Node.js.

Generates 8-byte UUID that consists of:

  • 41 bits for time in milliseconds (we can use it until 2084/09/06 lunch time comes)
  • 13 bits for additional information - Instagram used it to store the logical shard ID
  • 10 bits that represent an auto-incrementing sequence.
  • Note that you need to implement your own counter per machine - In default, we fill
    this space with random values.

Benefits of this library:

  • Qualified - Because this library implements Instagram UUID Spec. and instagram rocks.
  • Compact Size - The raw hash is only 8bytes, and Base64 hash is only 11 bytes!
  • URL-Safe - The default Base64 encoding does not contain URL-non-safe characters.

Installation

$ npm install --save instauuid

Examples

var instauuid = require('instauuid');

instauuid(); // Default: Base64 - ex) "paZhL98FBXs"
instauuid('hex'); // Hex String - ex) "a5afe16d768b4cdf"
instauuid('decimal'); // Decimal String - ex) "11939009410687035132"

// Using InstaUUID with MySQL
// See "Integrating with your database" Section.
var sql = 'INSERT INTO users (id, name) VALUES (??, ??)';
sql = mysql.format(instauuid('decimal'), 'John Doe');

// You can add some information to prevent hash conflicts. (recommended for big systems)
instauuid({ type: 'hex', additional: shardId, countNumber: 1022 });

Integrating with your database

MySQL

First, You need to set your primary key datatype to UNSIGNED BIGINT.

CREATE TABLE foo (
   id   BIGINT UNSIGNED NOT NULL UNIQUE PRIMARY KEY,
   ....
);

#####node-mysql Driver

  • Set 'supportBigNumbers', 'bigNumberStrings' options to true when connecting.
  • This option makes you to read BIGINT as String, because UUID is too big that
    JavaScript Number type cannot support. Number can handle up to 2^53 but we're using 2^64 range (Unsigned Int64)
  • I recommend to use Long or bignumber.js Library when handling BIGINT data.
  • Use 'decimal' type when generating UUID. (See above example)

Redis

Redis stores Integer as String, so you don't need to worry about anything.

MongoDB

Just use MongoDB ObjectId.

Documentation

instauuid(options)

Generates and returns UUID.

  • options (object || string): Generating options. (or return type)
Option Description Range Default
type Return type of generated ID. See below for more details. - 'base64'
additional Additional Unique Information (ex: Logical Shard ID) 0 ~ 8191 (current time as μs)
countNumber Auto-incrementing sequence - to prevent conflicting 0 ~ 1023 (Random)
Return types
Name Description Type
base64 Base64 Hash (Note that this is not pure Base64. We uses URL-Safe Base64URL) String
decimal Decimal String String
number (Same as above) -
hex Hex String String
hash (Same as above) -
long Long object Long
buffer Buffer object Buffer
buffer_be Big-Endian encoded buffer Buffer
raw Raw ASCII Bytes - Don't recommend. String

License: MIT

Author: Hyojun Kim

instauuid's People

Contributors

therne avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.