fix tire to trie

This commit is contained in:
gzdaijie
2020-03-29 15:09:29 +08:00
parent 0eb57c044a
commit dbebb2a9ed
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -18,7 +18,7 @@
- 第一天:[前置知识(http.Handler接口)](https://geektutu.com/post/gee-day1.html) | [Code](gee-web/day1-http-base)
- 第二天:[上下文设计(Context)](https://geektutu.com/post/gee-day2.html) | [Code](gee-web/day2-context)
- 第三天:[Tire树路由(Router)](https://geektutu.com/post/gee-day3.html) | [Code](gee-web/day3-router)
- 第三天:[Trie树路由(Router)](https://geektutu.com/post/gee-day3.html) | [Code](gee-web/day3-router)
- 第四天:[分组控制(Group)](https://geektutu.com/post/gee-day4.html) | [Code](gee-web/day4-group)
- 第五天:[中间件(Middleware)](https://geektutu.com/post/gee-day5.html) | [Code](gee-web/day5-middleware)
- 第六天:[HTML模板(Template)](https://geektutu.com/post/gee-day6.html) | [Code](gee-web/day6-template)
@@ -70,7 +70,7 @@ What can I write in 7 days? A gin-like web framework? A distributed cache like g
- Day 1 - http.Handler Interface Basic [Code](gee-web/day1-http-base)
- Day 2 - Design a Flexiable Context [Code](gee-web/day2-context)
- Day 3 - Router with Tire-Tree Algorithm [Code](gee-web/day3-router)
- Day 3 - Router with Trie-Tree Algorithm [Code](gee-web/day3-router)
- Day 4 - Group Control [Code](gee-web/day4-group)
- Day 5 - Middleware Mechanism [Code](gee-web/day5-middleware)
- Day 6 - Embeded Template Support [Code](gee-web/day6-template)
+1 -1
View File
@@ -12,7 +12,7 @@
- [第一天:前置知识(http.Handler接口)](https://geektutu.com/post/gee-day1.html)
- [第二天:上下文设计(Context)](https://geektutu.com/post/gee-day2.html)
- [第三天:Tire树路由(Router)](https://geektutu.com/post/gee-day3.html)
- [第三天:Trie树路由(Router)](https://geektutu.com/post/gee-day3.html)
- [第四天:分组控制(Group)](https://geektutu.com/post/gee-day4.html)
- [第五天:中间件(Middleware)](https://geektutu.com/post/gee-day5.html)
- [第六天:HTML模板(Template)](https://geektutu.com/post/gee-day6.html)
+1 -1
View File
@@ -65,7 +65,7 @@ func handler(w http.ResponseWriter, r *http.Request) {
- 第一天:[前置知识(http.Handler接口)](https://geektutu.com/post/gee-day1.html)[Code - Github](https://github.com/geektutu/7days-golang/tree/master/gee-web/day1-http-base)
- 第二天:[上下文设计(Context)](https://geektutu.com/post/gee-day2.html)[Code - Github](https://github.com/geektutu/7days-golang/tree/master/gee-web/day2-context)
- 第三天:[Tire树路由(Router)](https://geektutu.com/post/gee-day3.html)[Code - Github](https://github.com/geektutu/7days-golang/tree/master/gee-web/day3-router)
- 第三天:[Trie树路由(Router)](https://geektutu.com/post/gee-day3.html)[Code - Github](https://github.com/geektutu/7days-golang/tree/master/gee-web/day3-router)
- 第四天:[分组控制(Group)](https://geektutu.com/post/gee-day4.html)[Code - Github](https://github.com/geektutu/7days-golang/tree/master/gee-web/day4-group)
- 第五天:[中间件(Middleware)](https://geektutu.com/post/gee-day5.html)[Code - Github](https://github.com/geektutu/7days-golang/tree/master/gee-web/day5-middleware)
- 第六天:[HTML模板(Template)](https://geektutu.com/post/gee-day6.html)[Code - Github](https://github.com/geektutu/7days-golang/tree/master/gee-web/day6-template)