[name] have you had experience operating services — working with Kubernetes, Linux, etc.?
Golang
What are the disadvantages of the implemented cache background cleaning method? How can it be improved?
If you create a map, add a million values, then delete all elements and call GC — will the memory return to its original state?
What are interfaces in Go and what are they used for?
What is a system call (syscall)?
Why is there no method to get the number of elements (len) in sync.Map?
In: [1, 2, 3, 4, 5] Out: True In: [1, 2, 3, 3, 4, 5, 1] Out: False
To which group (mutable/immutable) does the interface in Go belong?
Tell me about yourself and your experience
Is the standard map in Go concurrency-safe? What alternatives exist?
Tell me about evacuation in Go maps before version 1.24: what is it for and when does it happen?
What does the construction `var _ Interface = (*Type)(nil)` mean in Go?
What is a process and a thread in OS (Linux)?
What interprocess communication (IPC) methods exist in Linux? How do SIGTERM and SIGKILL differ?
What work format do you consider?
How will you choose between offers if there are several?
What is the difference between VACUUM FULL and regular VACUUM?
What are the differences between using a regular map with locks and the sync.Map structure for storing data?
How are dead rows cleaned up in PostgreSQL? How does Vacuum work?