Tag

ULID

1 views collected around this technical thread.

Selected Java Interview Questions
Selected Java Interview Questions
Apr 30, 2024 · Fundamentals

Understanding ULID: A Universally Unique Lexicographically Sortable Identifier

This article explains ULID, a 128‑bit identifier that combines a millisecond‑precision timestamp with high‑entropy randomness, offering lexicographic ordering, URL‑safe Base32 encoding, and a lower collision risk compared to UUIDs, along with Python usage examples and specifications.

Distributed SystemsPythonULID
0 likes · 6 min read
Understanding ULID: A Universally Unique Lexicographically Sortable Identifier
Architecture Digest
Architecture Digest
Dec 1, 2023 · Databases

Understanding ULID: A Lexicographically Sortable Unique Identifier and Its Python Implementation

ULID (Universally Unique Lexicographically Sortable Identifier) offers a 128‑bit, time‑based and random identifier that is URL‑safe, sortable, and more collision‑resistant than UUID, with detailed specifications, binary layout, and Python usage examples including generation, conversion, and component extraction.

Distributed SystemsPythonULID
0 likes · 7 min read
Understanding ULID: A Lexicographically Sortable Unique Identifier and Its Python Implementation
Sohu Tech Products
Sohu Tech Products
Nov 2, 2022 · Fundamentals

Understanding ULID: Features, Specification, and Python Usage

This article explains ULID (Universally Unique Lexicographically Sortable Identifier), compares it with UUID, outlines its technical specifications, lists its advantages and typical application scenarios, and provides detailed Python examples for generating and manipulating ULIDs.

Distributed SystemsIdentifier GenerationPython
0 likes · 6 min read
Understanding ULID: Features, Specification, and Python Usage
Architecture Digest
Architecture Digest
Oct 25, 2022 · Fundamentals

Understanding ULID: Features, Specification, and Python Usage Compared to UUID

This article explains ULID—a lexicographically sortable, 128‑bit identifier combining timestamp and randomness—detailing its advantages over UUID, specifications, binary layout, common use cases, and provides Python code examples for generating and manipulating ULIDs.

Distributed SystemsPythonULID
0 likes · 7 min read
Understanding ULID: Features, Specification, and Python Usage Compared to UUID
Architect's Tech Stack
Architect's Tech Stack
Oct 20, 2022 · Fundamentals

Understanding ULID: A Better Alternative to UUID

ULID (Universally Unique Lexicographically Sortable Identifier) combines a millisecond-precision timestamp with high-entropy randomness to produce 128‑bit, URL‑safe, lexicographically sortable IDs that avoid UUID’s collision risks, offering advantages such as monotonic ordering, compact Base32 encoding, and suitability for distributed database primary keys.

Distributed SystemsPythonULID
0 likes · 8 min read
Understanding ULID: A Better Alternative to UUID
Top Architect
Top Architect
Oct 17, 2022 · Fundamentals

Understanding ULID: Features, Specification, and Python Usage

This article explains ULID (Universally Unique Lexicographically Sortable Identifier) as a time‑based, collision‑resistant alternative to UUID, outlines its specifications, highlights its advantages, and provides practical Python examples for generating and manipulating ULIDs.

Distributed SystemsPythonULID
0 likes · 7 min read
Understanding ULID: Features, Specification, and Python Usage
IT Architects Alliance
IT Architects Alliance
Oct 16, 2022 · Fundamentals

Understanding ULID: Features, Specification, and Python Usage

This article explains what ULID (Universally Unique Lexicographically Sortable Identifier) is, compares it with UUID, outlines its timestamp‑based and random components, describes its Base32 encoding and binary layout, and shows how to generate and manipulate ULIDs in Python using the ulid‑py library.

Distributed SystemsPythonULID
0 likes · 7 min read
Understanding ULID: Features, Specification, and Python Usage
Selected Java Interview Questions
Selected Java Interview Questions
Oct 14, 2022 · Backend Development

Understanding ULID: Features, Specification, and Python Usage Compared to UUID

This article explains what ULID is, why it can be a better alternative to UUID, outlines its key characteristics and specification, and provides practical Python examples for generating and handling ULIDs in distributed backend systems.

BackendPythonULID
0 likes · 7 min read
Understanding ULID: Features, Specification, and Python Usage Compared to UUID