What is GOMAXPROCS, why is it needed, and how does it work?
Golang
What is the difference between TCP and UDP protocols, why are they used and how?
Why is it fundamentally important to build authorization over TCP rather than UDP? What would be the problem if you wrote authorization on UDP?
Is JWT encoded or encrypted?
What is your current region of residence?
How can the database operate under such load?
What is the advantage of Go over C# or Java if they also have green threads?
When the refresh token stored in a cookie expires, what happens to the user?
You haven't resigned yet, will you have a standard two-week notice period?
What is JWT and Cookie, and how do they differ?
func merge(chs ...<-chan int) <-chan int { ... } package main import ( "fmt" "sync" ) func main() { var wg sync.WaitGroup for i := 0; i < 5; i++ { wg.Add(1) go func(n int) { defer wg.Done() fmt.Println(i) }(i) } wg.Wait() }
What is the difference between HTTP/1.1 and HTTP/2? What was added and what was changed in HTTP/2?
Why did Go become popular? What problem does it solve?
What is essential for designing a REST API?
What other caching options besides cache-aside are there?
users id PK role report
Is the architecture handled by a dedicated architect or a team lead?
What salary expectation do you currently consider when reviewing a job offer?
Is there the same restriction in RPC on the presence of a resource in the path as in REST?
What is OpenTelemetry (OTel), why is it needed, and what does it look like?