From e0ddb3c1f6118cf9cb82ef79676294dd4e563c9d Mon Sep 17 00:00:00 2001 From: Edward Date: Sat, 9 May 2020 16:20:57 +0800 Subject: [PATCH] update README.md --- README.md | 2 +- go.sum | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1ec206c..6da18a5 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ A curated collection of idiomatic design & application patterns for Go language. | [Generators](/concurrency/generator.md) | Yields a sequence of values one at a time | ✔ | | [Reactor](/concurrency/reactor.md) | Demultiplexes service requests delivered concurrently to a service handler and dispatches them synchronously to the associated request handlers | ✘ | | [Parallelism](/concurrency/parallelism.md) | Completes large number of independent tasks | ✔ | -| [Producer Consumer](/concurrency/producer_consumer.md) | Separates tasks from task executions | ✘ | +| [Producer Consumer](/channel/producer_consumer) | Separates tasks from task executions | ✔ | ## Messaging Patterns diff --git a/go.sum b/go.sum index 957fdf6..1ac7c60 100644 --- a/go.sum +++ b/go.sum @@ -5,7 +5,9 @@ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/golang/go v0.0.0-20200503072332-53f27474a455 h1:ay8BLgDCVIRs7NZOyqOh/wycS6LaviF8bTmrs9yy2a8= +github.com/golang/go v0.0.0-20200509044625-0242d461c929 h1:Em+zBp9qONPwDiWt/WwXNxAhJkUoAT3huXjNkGnQvXs= github.com/golang/go/src v0.0.0-20200503072332-53f27474a455 h1:nFFYbwvrsBUXVDczcIUoBiCLx4IPBnWu2zByCGn36cg= +github.com/golang/go/src v0.0.0-20200509044625-0242d461c929 h1:0oubbfFk6+m8E9yeUB+H+yt8ILOPdxXtkLFcjxuN+Dc= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/graphql-go/graphql v0.7.9 h1:5Va/Rt4l5g3YjwDnid3vFfn43faaQBq7rMcIZ0VnV34= github.com/graphql-go/graphql v0.7.9/go.mod h1:k6yrAYQaSP59DC5UVxbgxESlmVyojThKdORUqGDGmrI=