order patterns in go more catalogs

This commit is contained in:
Edward 2020-05-02 18:25:12 +08:00
parent 2dd4c5aee1
commit 7a0e67f0b3
15 changed files with 14 additions and 6 deletions

View File

@ -32,7 +32,7 @@ Go常用的、面向工程化和最佳实践的模式套路包含常见的23
+ [x] [桥模式(Bridge)](./structure/03_bridge)
+ [x] [复合模式(Composite)](./structure/05_composite)
+ [x] [享元模式(Flyweight)](./structure/04_flyweight)
+ [ ] [装饰模式(Decorator)](./structure/06_decorator)
+ [x] [装饰器模式(Decorator)](./structure/06_decorator)
+ [x] [代理模式(Proxy)](./structure/07_proxy)
## 行为型模式
@ -52,9 +52,14 @@ Go常用的、面向工程化和最佳实践的模式套路包含常见的23
## Go More
+ [x] [发布订阅模式(Pub-Sub)](./gomore/27_messages)
+ [x] [时差模式(Time Profile)](./gomore/28_profiles)
+ [x] [上下文模式(Context)](./gomore/29_context)
+ [x] [发布订阅模式(Pub-Sub)](./gomore/01_messages)
+ [x] [时差模式(Time Profile)](./gomore/02_profiles)
+ [x] [上下文模式(Context)](./gomore/03_context)
+ [ ] [淡入模式(Fan-In)](./gomore/04_fan_in)
+ [ ] [淡出模式(Fan-Out)](./gomore/05_fan_out)
+ [ ] [熔断模式(circuit breaker)](./gomore/06_circuit_breaker)
+ [ ] [限流模式(rate limiting))](./gomore/07_rate_limiting)
+ [ ] [信号量模式(Context)](./gomore/08_semaphore)
## 参考资料(Design patters Articles)

View File

@ -0,0 +1,3 @@
# 熔断模式
也叫断路器模式

View File

@ -1,6 +1,6 @@
# 装饰模式
# 装饰模式
装饰模式就是比较简单了,其目的是在不改变原有类型对象的情况下,对其进行装饰,扩展,以达到公共强化和扩展的目的。
装饰模式就是比较简单了,就是做装饰,其目的是在不改变原有类型对象的情况下,对其进行装饰,扩展,以达到公共强化和扩展的目的。
装饰模式的目的是在原有功能或者能力的基础上提供额外的更多的能力和特性,这一点和代理模式、复合模式是有很大不同的,了解每一种模式,重点是要了解这个模式的最初的设计者应用场景和其解决目的,以便加以利用。