Tag

base62

1 views collected around this technical thread.

Goodme Frontend Team
Goodme Frontend Team
Oct 14, 2024 · Backend Development

Ensuring Globally Unique CDN Filenames Using Timestamp, Base62, and Redis Locks

This article explores several strategies—timestamp with random numbers, MD5 hashing, UUIDs, and an optimized Base62 conversion combined with Redis‑based locking—to generate short, globally unique CDN file names for an OSS upload platform.

CDNbase62nodejs
0 likes · 7 min read
Ensuring Globally Unique CDN Filenames Using Timestamp, Base62, and Redis Locks
Architect
Architect
Nov 10, 2023 · Backend Development

Design and Implementation of a High‑Performance Short‑Link Platform

This article details the architecture, core algorithms, security measures, and performance optimizations of a high‑throughput short‑link service, covering hash‑based ID generation, Base62 encoding, distributed ID schemes, caching, database indexing, sharding, and monitoring to ensure efficient and secure URL shortening.

URL Shorteningbackend architecturebase62
0 likes · 13 min read
Design and Implementation of a High‑Performance Short‑Link Platform
Zhuanzhuan Tech
Zhuanzhuan Tech
Aug 9, 2023 · Backend Development

Design and Implementation of a High‑Performance URL Shortening Platform

This article details the architecture, core algorithms, security measures, and performance optimizations of a URL shortener platform, covering hash functions, distributed ID generation, Base62 encoding, caching, database indexing, sharding, and monitoring to achieve efficient and secure link redirection.

Backend DevelopmentURL Shorteningbase62
0 likes · 11 min read
Design and Implementation of a High‑Performance URL Shortening Platform
Architecture Digest
Architecture Digest
Jul 1, 2020 · Backend Development

Design and Implementation of a Short URL Service

This article explains the concept of short URLs, compares three generation algorithms (auto‑increment ID, hash‑based, and random), analyzes their trade‑offs, and presents a complete backend design including database schema, caching strategy, redirection flow, and Java code examples for hash and base‑62 conversion.

BackendDatabase DesignJava
0 likes · 15 min read
Design and Implementation of a Short URL Service