Dong148

Results 11 comments of Dong148

> You can call python grpc services like calling grpc services in Go. Thanks for your help, i previously assumed that zrpc is based on grpc and can work in...

similar issue, process killed by linux kernel( SIGNAL 11), 4GPU 64G RAM

既然lock-free 这个版本性能不如带锁的slice,这个实现有什么适合的应用场景吗

A chan any can pass a series of variables of different types: ` c := make(chan any, 1) go func() { for x := range c { t.Log(x) } }()...

Will there be prolonged pauses or OOMs in situations with large amounts of data?

> Is this what you are talking about? https://github.com/zeromicro/go-zero/blob/master/core/collection/safemap.go > > You can see the test case for the specific usage: https://github.com/zeromicro/go-zero/blob/master/core/collection/safemap_test.go > > It is similar to go's sync.Map...

`go test: func TestSafeMap(t *testing.T) { tests := []struct { size int exception int }{ { 1000000, 2000, }, { 1000000, 50, }, } for _, test := range tests...

Same problems in vLLM "response_format": {"type": "json_object"}

> Can you describe it in more detail? ## Issue Description I am currently developing a gateway application that requires dynamic routing based on the suffix of the URL path....

` func TestSearchTreeMatch(t *testing.T) { tree := search.NewTree() handler := func() { print("match!") } err := tree.Add("/a/:path", handler) if err != nil { t.Error(err) } res, matched := tree.Search("/a/b") if...