GoLang简单的REST API应该使用GoRoutines

前端之家收集整理的这篇文章主要介绍了GoLang简单的REST API应该使用GoRoutines前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的问题很简单.

我应该将GoRoutines用于一个非常简单的REST API吗?

我基本上只对数据库进行简单查询,验证会话或进行登录.这些操作是否值得设置GoRoutine? GoRoutines何时有用,我该如何设置它们?

net / http包已经为您解决了这个问题.一旦你调用Serve(或更可能是ListenAndServe),就会发生以下情况:

Serve accepts incoming HTTP connections on the listener l,creating a new service goroutine for each. The service goroutines read requests and then call handler to reply to them. Handler is typically nil,in which case the DefaultServeMux is used.

有关更多信息,请参见http://golang.org/pkg/net/http/

如果请求触发需要更长时间的处理并且您不想让客户端等待,您可能需要另一个goroutine.

原文链接:https://www.f2er.com/go/186885.html

猜你在找的Go相关文章