短 URL 服务,怎么设计与实现?
程序员的成长之路
共 4654字,需浏览 10分钟
·
2020-08-28 21:18
阅读本文大概需要 5 分钟。
前言
短. 短信和许多平台(微博)有字数限制,太长的链接加进去都没有办法写正文了.
好看. 比起一大堆不知所以的参数,短链接更加简洁友好.
方便做一些统计.你点了链接会有人记录然后分析的.
安全. 不暴露访问参数.
短URL基础原理
有一个服务,将要发送给你的长URL对应到一个短URL上.例如
www.baidu.com -> www.t.cn/1
把短url拼接到短信等的内容上发送.
用户点击短URL,浏览器用301/302进行重定向,访问到对应的长URL.
展示对应的内容.
服务设计
对应关系如何存储?
如何保证长短链接一一对应?
短URL的存储
高并发
分布式
实现
package util;
import redis.clients.jedis.Jedis;
/**
* Created by pfliu on 2019/06/23.
*/
publicclass ShortUrlUtil {
privatestaticfinal String SHORT_URL_KEY = "SHORT_URL_KEY";
privatestaticfinal String LOCALHOST = "http://localhost:4444/";
privatestaticfinal String SHORT_LONG_PREFIX = "short_long_prefix_";
privatestaticfinal String CACHE_KEY_PREFIX = "cache_key_prefix_";
privatestaticfinalint CACHE_SECONDS = 1 * 60 * 60;
privatefinal String redisConfig;
privatefinal Jedis jedis;
public ShortUrlUtil(String redisConfig) {
this.redisConfig = redisConfig;
this.jedis = new Jedis(this.redisConfig);
}
public String getShortUrl(String longUrl, Decimal decimal) {
// 查询缓存
String cache = jedis.get(CACHE_KEY_PREFIX + longUrl);
if (cache != null) {
return LOCALHOST + toOtherBaseString(Long.valueOf(cache), decimal.x);
}
// 自增
long num = jedis.incr(SHORT_URL_KEY);
// 在数据库中保存短-长URL的映射关系,可以保存在MySQL中
jedis.set(SHORT_LONG_PREFIX + num, longUrl);
// 写入缓存
jedis.setex(CACHE_KEY_PREFIX + longUrl, CACHE_SECONDS, String.valueOf(num));
return LOCALHOST + toOtherBaseString(num, decimal.x);
}
/**
* 在进制表示中的字符集合
*/
finalstaticchar[] digits = {'0', '1', '2', '3', '4', '5', '6', '7', '8',
'9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y',
'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};
/**
* 由10进制的数字转换到其他进制
*/
private String toOtherBaseString(long n, int base) {
long num = 0;
if (n < 0) {
num = ((long) 2 * 0x7fffffff) + n + 2;
} else {
num = n;
}
char[] buf = newchar[32];
int charPos = 32;
while ((num / base) > 0) {
buf[--charPos] = digits[(int) (num % base)];
num /= base;
}
buf[--charPos] = digits[(int) (num % base)];
returnnew String(buf, charPos, (32 - charPos));
}
enum Decimal {
D32(32),
D64(64);
int x;
Decimal(int x) {
this.x = x;
}
}
public static void main(String[] args) {
for (int i = 0; i < 100; i++) {
System.out.println(new ShortUrlUtil("localhost").getShortUrl("www.baidudu.com", Decimal.D32));
System.out.println(new ShortUrlUtil("localhost").getShortUrl("www.baidu.com", Decimal.D64));
}
}
}
推荐阅读:
微信扫描二维码,关注我的公众号
朕已阅
评论