- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我的项目需要一个带动态缓冲区的非阻塞 channel ,所以我编写了这段代码。
这是类型声明:
//receiver is the receiver of the non blocking channel
type receiver struct {
Chan <-chan string
list *[]string
mutex sync.RWMutex
}
//Clear sets the buffer to 0 elements
func (r *receiver) Clear() {
r.mutex.Lock()
*r.list = (*r.list)[:0]
r.mutex.Unlock()
//Discards residual content
if len(r.Chan) == 1 {
<-r.Chan
}
}
构造函数:
//NewNonBlockingChannel returns the receiver & sender of a non blocking channel
func NewNonBlockingChannel() (*receiver, chan<- string) {
//Creates the send and receiver channels and the buffer
send := make(chan string)
recv := make(chan string, 1)
list := make([]string, 0, 20)
r := &receiver{Chan: recv, list: &list}
go func() {
for {
//When the receiver is empty sends the next element from the buffer
if len(recv) == 0 && len(list) > 0 {
r.mutex.Lock()
recv <- list[len(list)-1]
list = list[:len(list)-1]
r.mutex.Unlock()
}
select {
//Adds the incoming elements to the buffer
case s := <-send:
r.mutex.Lock()
list = append(list, s)
r.mutex.Unlock()
//default:
}
}
}()
return r, send
}
主要是玩具测试:
func main() {
recv, sender := NewNonBlockingChannel()
//send data to the channel
go func() {
for i := 0; i < 5; i++ {
sender <- "Hi"
}
time.Sleep(time.Second)
for i := 0; i < 5; i++ {
sender <- "Bye"
}
}()
time.Sleep(time.Millisecond * 70) //waits to receive every "Hi"
recv.Clear()
for data := range recv.Chan {
println(data)
}
}
当我测试它时,当我从发件人“case s := <-send:”收到时,选择语句中发生了死锁,但是当我移动发送下一个缓冲的条件 block 时将字符串放入 select 语句中一切正常:
go func() {
for {
select {
//Adds the incoming elements to the buffer
case s := <-send:
r.mutex.Lock()
list = append(list, s)
r.mutex.Unlock()
default:
//When the receiver is empty sends the next element from the buffer
if len(recv) == 0 && len(list) > 0 {
r.mutex.Lock()
recv <- list[len(list)-1]
list = list[:len(list)-1]
r.mutex.Unlock()
}
}
}
}()
我想知道为什么。
最佳答案
想象一下这个场景:
五个“再见”已由主发送,其中两个已由打印
for data := range recv.Chan {
println(data)
}
三个已留在list
(这是因为三次进入for
循环,条件len(recv) == 0 && len(list) > 0
为假,所以刚好满足case s := <-send
,做三次list = append(list, s)
)
goroutine 由 NewNonBlockingChannel
启动正在等待声明s := <-send
.没有更多的工作人员可以接收,所以它将永远等待
移动代码时
if len(recv) == 0 && len(list) > 0 {
r.mutex.Lock()
recv <- list[len(list)-1]
list = list[:len(list)-1]
r.mutex.Unlock()
}
进入select
, 事情是不同的:
等待的gorountine会被唤醒,条件if len(recv) == 0 && len(list) > 0
来得正是时候。事情进展顺利。
关于go - 当我在 Go 中将条件移到 select 语句之外时,为什么会发生此死锁,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41185542/
我有类似下面的代码: ... id: myComponent signal updateState() property variant modelList: [] Repeater { mo
我正在处理一些我无法展示的私有(private)代码,但我已经制作了一些示例代码来描述我的问题: 主.c: #include #include #include #include typede
这个问题在这里已经有了答案: 关闭10 年前。 Possible Duplicate: what are the differences in die() and exit() in PHP? 我想
在编写 Perl 模块时,在模块内部使用 croak/die 是一个好习惯吗? 毕竟,如果调用者不使用 eval block ,模块可能会使调用它的程序崩溃。 在这些情况下,最佳做法是什么? 最佳答案
我有一些搜索线程正在存储结果。我知道当线程启动时,JVM native 代码会代理在操作系统上创建新 native 线程的请求。这需要 JVM 之外的一些内存。当线程终止并且我保留对它的引用并将其用作
我刚刚花了很多时间调试一个我追溯到 wantarray() 的问题。 .我已将其提炼为这个测试用例。 (忽略 $! 在这种情况下不会有任何有用信息的事实)。我想知道为什么wantarray在第二个示例
我看到一些代码是这样做的: if(something){ echo 'exit from program'; die; } ...more code 和其他只使用 die 的人: if
我正在尝试将此表格用于: 如果任何 $_POST 变量等于任何其他 $_POST 变量抛出错误。 如果只有几个,那不是问题,但我有大约 20 个左右所以如果我想这样做,我将不得不像这样 但这
每次我运行: hadoop dfsadmin -report 我得到以下输出: Configured Capacity: 0 (0 KB) Present Capacity: 0 (0 KB) DFS
我是一名优秀的程序员,十分优秀!