摘要: asynq是基于reids的队列,支持多种形式 消费者 package main import ( "context" "fmt" "log" "os" "os/signal" "syscall" "time" "github.com/hibiken/asynq" ) // HandleMsg 处理 阅读全文
posted @ 2023-12-02 15:01 朝阳1 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 创建plugin_1.go&编译 package main import "fmt" func Greet(name string) { fmt.Println("Hello", name) } go build -buildmode=plugin -o xxxx.so plugin_1.go 加载 阅读全文
posted @ 2023-12-02 09:41 朝阳1 阅读(19) 评论(0) 推荐(0) 编辑