You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a request is cancelled or timed out, all goroutines working on that request should exit quickly and so the system can reclaim any resources they are using.
select 구문에서 ctx.Done() 를 이용하여 context 가 취소되거나 타임아웃 됐을 때 backend 작업들을(database or RPC) 기다리지 않고 끊어버릴 수 있다.
https://www.youtube.com/watch?v=LSzR0VEraWw
https://go.dev/blog/context
select
구문에서ctx.Done()
를 이용하여 context 가 취소되거나 타임아웃 됐을 때 backend 작업들을(database or RPC) 기다리지 않고 끊어버릴 수 있다.context.WithValue()
를 이용할 때 키가 충돌될 것 같다면 패키지에서 타입을 지정하고 export 를 하지 않도록 하면 충돌을 회피할 수 있다.: https://youtu.be/LSzR0VEraWw?t=1939The text was updated successfully, but these errors were encountered: