Sobes.tech

Embedded / IoT

What are the anti-patterns of microservices architecture?

Intern
415

//Task condition //Write code that will output the response codes for HTTP requests to two URLs //(Google's main page and shtrafovnet.ru's main page) //Requests should be made in parallel.

397

What is a Materialized View in ClickHouse?

Intern
394

Hikari Pool with 10 connections, under load, received 'connections not available'. What to do?

391

If the system has 24 cores, how many processors will be in the GMP model?

Intern
362

What is SKIP LOCKED in PostgreSQL? How to use it for task queues?

Intern
339

// What will the following code output and why? package main import "fmt" type Person struct { Name string } func changeName(person *Person) { *person = Person{Name: "Alice"} } func main() { person := &Person{ Name: "Bob", } fmt.Println(person.Name) // Bob changeName(person) fmt.Println(person.Name) // Bob }

334
/9