context.TODO() vs. context.Background()
suggest changeYou can create new, empty context using context.TODO() and context.Background().
What’s the difference?
In terms of functionality: none. They are exactly the same value, bit-by-bit.
The difference is in intent.
Official documentation describes context.TODO() as:
TODOreturns a non-nil, emptyContext. Code should usecontext.TODOwhen it’s unclear whichContextto use or it is not yet available (because the surrounding function has not yet been extended to accept aContextparameter).TODOis recognized by static analysis tools that determine whetherContextsare propagated correctly in a program.
And context.Background() as:
Backgroundreturns a non-nil, emptyContext. It is never canceled, has no values, and has no deadline. It is typically used by the main function, initialization, and tests, and as the top-levelContextfor incoming requests.
Frankly, I’m not sure what they are trying to say.
I guess context.TODO() is meant to be used if you expect that at some point in the future you’ll no longer need to create context there, either because it’ll be passed from the outside or that there will be a more specific way to create it.
If you can’t decide, don’t sweat it. In practice they behave the same way so pick whichever.
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents