数据库
首页 > 数据库> > 基于Redis作为发号器生成短网址Python实践

基于Redis作为发号器生成短网址Python实践

作者:互联网

请尊重原创,本文原文地址:https://hooyes.net/p/python-redis-short-url

描述

如何将长地址URL转换为短地址URL,一个比较理想的解决方案就是使用发号器生成一个唯一的整数ID(这唯一ID与长网址一一对应),然后转换为62进制,作为短地址URL。

实现

发号器使用 Redis 的 incr 函数 incr('SID') 
// 62个字符作为62进制符号 0123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNOPQRSTUVWXYZ-_ 12345678 转成 62 进制为 RPGS 

 

代码

# python 
import redisclass ShortenURL:
    _alphabet = '0123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNOPQRSTUVWXYZ-_'
    _base = len(_alphabet)
    def encode(self, number):        string = ''
        while(number > 0):            string = self._alphabet[number % self._base] + string
            number //= self._base
        return string
    def decode(self, string):        number = 0
        for char in string:            number = number * self._base + self._alphabet.index(char)        return numbert = ShortenURL()
# Redis 作为ID发号器 
r = redis.StrictRedis(host='127.0.0.1', port=6379, db=0,password='hooyes')if r.exists('SID') != 1:
    r.set('SID',12345677)
r.incr('SID')
sid = int(r.get('SID'))

# 生成短网址,假如域名为 85.si
sn = t.encode(sid)
shorturl = 'https://85.si/' + sn
print(shorturl)

# 通过 ShortURL SN 解码到原SID
print(t.decode(sn))

测试

运行 python redis-short.py 即可以测试。 //注意需要具备 redis  

以上代码已放到Hooyes的Github上开源,欢迎Fork或提建议。

redis-short.py

相关推荐

推荐几个最最新的新浪短网址官方api接口
新浪短网址在线生成 新浪tcn短链接在线生成器推荐

完结撒花

标签:string,发号器,Python,redis,self,._,Redis,number,SID
来源: https://www.cnblogs.com/loj147/p/12877987.html