- Go Web Development Cookbook
- Arpit Aggarwal
- 59字
- 2021-08-27 19:01:12
Creating a simple TCP server
Whenever you have to build high performance oriented systems then writing a TCP server is always the best choice over an HTTP server, as TCP sockets are less hefty than HTTP. Go supports and provides a convenient way of writing TCP servers using a net package, which we will be covering in this recipe.