We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cdf10b2 + cfce5d2 commit 467f3e4Copy full SHA for 467f3e4
examples/go-by-example-channels/rate-limiting.rb
@@ -7,7 +7,7 @@
7
Channel = Concurrent::Channel
8
9
## Go by Example: Rate Limiting
10
-# https://gobyexample.com/tickers
+# https://gobyexample.com/rate-limiting
11
12
requests = Channel.new(buffer: :buffered, capacity: 5)
13
(1..5).each do |i|
examples/go-by-example-channels/worker-pools.rb
@@ -5,7 +5,7 @@
5
6
## Go by Example: Go by Example: Worker Pools
+# https://gobyexample.com/worker-pools
def worker(id, jobs, results)
jobs.each do |j|
0 commit comments