Dmitriy Gnatenko 6ff5ab9359 Update cache | il y a 1 mois | |
---|---|---|
.. | ||
cache.go | il y a 1 mois | |
readme.md | il y a 9 mois |
cache := NewCache()
cache.Set("1", "value 1")
val1, found1 := cache.Get("1") // "value 1", true
val2, found2 := cache.Get("2") // nil, false