An open API service indexing awesome lists of open source software.

https://github.com/shgopher/singeleflight-demo

【请求合并】golang.org/x/sync/singleflight 的一个 使用 demo,singleflight是很多goroutine同时只有一个goroutine获取到数据,其它的就不用去获取了,然后自动就能获取到相同的数据。
https://github.com/shgopher/singeleflight-demo

Last synced: 6 months ago
JSON representation

【请求合并】golang.org/x/sync/singleflight 的一个 使用 demo,singleflight是很多goroutine同时只有一个goroutine获取到数据,其它的就不用去获取了,然后自动就能获取到相同的数据。

Awesome Lists containing this project

README

          

# singeleFlight-demo
golang.org/x/sync/singleflight 的一个 使用 demo,singleflight是很多goroutine同时只有一个goroutine获取到数据,其它的就不用去获取了,然后自动就能获取到相同的数据。