golang设计模式-以kubernetes源码为例.pdf

golang设计模式-以kubernetes源码为例.pdf

  1. 1、本文档共10页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
golang设计模式-以kubernetes源码为例 概述 design pattern 介绍设计模式 engineer pattern 总结先进的⼯程模式 design pattern 参考 simplefactory 对golang来说就是Newxx函数,返回interface, kubernetes interface随处可见,可以说能⽤interface抽象的就是interface,随便举⼀ 个例⼦ // k8s.io/kubernetes/vendor/k8s.io/client-go/tools/cache/store.go func NewStore(keyFunc KeyFunc) Store { return &cache{ cacheStorage: NewThreadSafeStore(Indexers{}, Indices{}), keyFunc: keyFunc, } } type cache struct { // cacheStorage bears the burden of thread safety for the cache cacheStorage ThreadSafeStore // keyFunc is used to make the key for objects stored in and retrieved from items, and // should be deterministic. keyFunc KeyFunc } type Store interface { Add(obj interface{}) error Update(obj interface{}) error Delete(obj interface{}) error List() []interface{} ListKeys() []string Get(obj interface{}) (item interface{}, exists bool, err error) GetByKey(key string) (item interface{}, exists bool, err error) // Replace will delete the contents of the store, using instead the // given list. Store takes ownership of the list, you should not reference // it after calling this function. Replace([]interface{}, string) error Resync() error }复制代码 facade / adapter / decorator / delegate / bridge / mediator / composite 组合模式的不同形式,这些随处可见,也不⽤深究其中的区别。 singleton kubernetes/golang ⽤得很少,⼀般使⽤全局变量(如配置) (⽐如 net/http package 的 http.DefaultClient 和 http.DefaultServeMux). 或者作为context传递。 实现⽅式可以参考 ⽐较常见的⼀种⽅式是double check func GetInstance() *singleton { if instance == nil { // <-- Not yet perfect. since it's not fully atomic mu.Lock() defer mu.Unlock() if instance == nil { instance = &singleton{} } } return instance }复制代码 但是在golang⾥⾯有更好的⼀种⽅式,⽤"Once" type singleton struct { } var instance *s

文档评论(0)

134****3224 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

认证主体姚**

1亿VIP精品文档

相关文档

相关课程推荐