,我正在使用 go、grpc 和 postgres 制作任务列表。,如何在调用
postitem
插入新数据时自动流式传输数据?我需要订阅 postgres 还是可以在不订阅或发布订阅的情况下完成此操作?,// protobuf 架构,// postgres 表架构,// 继续,我猜 s.requests
类似于 chan task
。因此,在成功 // update postgres here
之后,您可以在 chan 中发送您的请求。, postitem
插入新数据时自动流式传输数据?我需要订阅 postgres 还是可以在不订阅或发布订阅的情况下完成此操作?,// protobuf 架构,// postgres 表架构,// 继续,我猜 s.requests
类似于 chan task
。因此,在成功 // update postgres here
之后,您可以在 chan 中发送您的请求。,