Closed mijjjj closed 6 months ago
你的代码是什么呢,发出来看看
Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑🤝🧑👫🧑🏿🤝🧑🏻👩🏾🤝👨🏿👬🏿
What is your code? Send it and take a look.
很正常的语句,使用的是内存缓存,数据库使用时sqlite,调试发现函数有正常执行到,但是返回后就会出现死锁,使用GetOrSetFunc正常使用
@gqcn @mijjjj 我复现了死锁的情况,以下是代码
// 创建表
create table issue3577(
id INT PRIMARY KEY NOT NULL,
name TEXT NOT NULL,
age INT NOT NULL
)
// 插入一条数据
insert into issue3577 values(1,'wln',28);
type Issue3577 struct {
Id int `orm:"id"`
Name string `orm:"name"`
Age int `orm:"age"`
}
func init(){
gdb.AddConfigNode("sqlite", gdb.ConfigNode{
Link: "sqlite::@file(/testdb.sqlite3)",
})
}
func Test_issue3577(t *testing.T) {
ctx := context.TODO()
sqlite := g.DB("sqlite")
key := "isssue3577"
t.Log("连接sqlite成功,开始查询")
v, err := gcache.GetOrSetFuncLock(ctx, key, func(ctx context.Context) (value interface{}, err error) {
return test_issue3557_getone(ctx, sqlite)
}, 0)
t.Log("查询结束")
if err != nil {
t.Fatal(err)
}
t.Log("val=", v.Interface())
}
func test_issue3557_getone(_ context.Context, db gdb.DB) (val any, err error) {
res, err := db.Model("issue3577").One()
if err != nil {
return nil, err
}
data := Issue3577{}
err = res.Struct(&data)
return data, err
}
运行命令 go test -timeout 30s -run ^Test_issue3577$ 运行上述代码,会死锁,可以自行查询打印的堆栈情况,
问题出现在当执行gcache.GetOrSetFuncLock ,
内部会调用(d adapterMemoryData) SetWithLock,这个函数一开始就直接mu.Lock
然后在调用回调函数test_issue3557_getone的时候,
内部会调用(m softTimeMaintainer) getSoftFieldNameAndType,文件路径: gf/database/gdb/gdb_model_soft_time.go:218
再往里面最终会调用(d *adapterMemoryData) Get,文件路径: gf/os/gcache/gcache_adapter_memory_data.go:145
这个函数一开始就调用了mu.RLock
,然后上面一开始调用的mu.Lock还没有解锁,所以就造成了死锁
图片在上面发不出来,在这里发
pr #3579 可以解决此bug
Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑🤝🧑👫🧑🏿🤝🧑🏻👩🏾🤝👨🏿👬🏿
3579 can solve this bug
嗯嗯,我就是切换到默认的了
只能先这样用了
Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑🤝🧑👫🧑🏿🤝🧑🏻👩🏾🤝👨🏿👬🏿
Yeah, okay, I just switched to the default one.
Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑🤝🧑👫🧑🏿🤝🧑🏻👩🏾🤝👨🏿👬🏿
This is the only way to use it first
Let me handle this.
Go version
go1.22.1
GoFrame version
2.7.0
Can this bug be reproduced with the latest release?
Option Yes
What did you do?
gcache.GetOrSetFuncLock
What did you see happen?
使用gcache.GetOrSetFuncLock会死锁
What did you expect to see?
正常运行