Sobes.tech

iOS

func getCarPrice() int64 { time.Sleep(1 * time.Second) return rand.Int63n(1000) } func main() { http.HandleFunc("/car/instant", func(resp http.ResponseWriter, req *http.Request) { fmt.Fprintf(resp, "%d", 0) }) http.ListenAndServe(":8080", nil) }

215

Basit bir bellek içi önbellek kütüphanesi yazmanız gerekiyor. type Cache arayüz { Set(k, v string) Get(k string) (v string, ok bool) }

198

Yalnızca yazma için mutex eklemek neden veri yarışını çözmez? Ortak bir değişkeni korumak için mutex nasıl doğru kullanılır?

164