vektah / dataloaden

go generate based DataLoader
MIT License
530 stars 79 forks source link

Possible data race when use loader.Clear(key).Prime(key, value) to force prime #46

Open NateScarlet opened 4 years ago

NateScarlet commented 4 years ago

Lock is released between Clear and Prime If other goroutine do Load or Prime during this period, the value will be not used.