Need Some more information about Temporal workers

Hi , From the documentation I get that worker continuously polls for tasks in the taskque . So is there a one to one mapping betwee worker and a taskque ? or multiple workers can poll for same taskque ? if that is possible how to create such workers using golang SDK?

is there a one to one mapping betwee worker and a taskque

Multiple workers can poll same task queue, you should have these workers in different processes for availability and scalability.

how to create such workers using golang SDK

You would use the go sdk api, see example here. For multiple workers you can use same api in each of your processes.