作者热门文章
- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我的场景:
time.Ticker
每隔几秒阅读一次消息。因此,问题是:生产者如何尽可能晚地生成消息?
显示总体思路的示例代码:
func producer() {
for {
select {
...
case pipe <- generateMsg():
// I'd like to call generateMsg as late as possible,
// i.e. calculate the timestamp when I know
// that writing to the channel will not block.
}
}
}
func consumer() {
for {
select {
...
case <-timeTicker.C:
// Reading from the consumer.
msg <- pipe
...
}
}
}
完整代码(与上面略有不同)可在 Go Playground 获得:https://play.golang.org/p/y0oCf39AV6P
我的一个想法是检查写入 channel 是否会阻塞。如果它不会阻塞,那么我可以生成一条消息然后发送它。然而……
另一个(坏的)想法:
func producer() {
var msg Message
for {
// This is BAD. DON'T DO THIS!
select {
case pipe <- msg:
// It may send the same message multiple times.
default:
msg = generateMsg()
// It causes a busy-wait loop, high CPU usage
// because it re-generates the message all the time.
}
}
}
最佳答案
This answer (对于 Go non-blocking channel send, test-for-failure before attempting to send? )建议使用第二个 channel 将信号从消费者发送到生产者:
timer.Ticker
的报价后)。关于go - 如何尽可能晚地计算要在 channel 上发送的消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56559684/
我知道在 KDB 中,如果您有一个列表,例如... l:`apples`oranges`pears` 您可以像下面这样进行 N 次随机选择: 9?l 但是如何尽可能均匀地选择列表中的每个项目? 最佳答
我真的厌倦了它。我有一个高级 Web 应用程序依赖于大量 Javascript 库(jQuery、jQueryUI、OpenLayers、highcharts、EJSChart 等等)。不用说,Int
我是一名优秀的程序员,十分优秀!