# ShortUrl **Repository Path**: pardon110/ShortUrl ## Basic Information - **Project Name**: ShortUrl - **Description**: 通过短网址转换实操,由浅入深演示sync.Mutex 同步锁,gob编解码器,通道,守护goroutine , 分布式rpc通信等技术落地场景 - **Primary Language**: Go - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 1 - **Created**: 2019-10-10 - **Last Updated**: 2022-04-16 ## Categories & Tags **Categories**: short-url **Tags**: None ## README # ShortUrl ## 介绍 短标签网址转换,由浅入深,锁,`goroutine,gob,rpc,chan` 等解析 ## 版本 - 版本 1 :` map, struct ,sync.Mutex` 用法 - 版本 2 : 持久化数据gob文件,文件读写,错误处理 - 版本 3 : 使用协程和通道重写应用,实现守护`goroutine` - 版本 4 : 用 `json `版本解决gob基于流的持久化协议带来的一些问题 - 版本 5: 一个使用 `rpc `协议的分布式版本。