mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2024-11-24 15:18:57 +00:00
Merge branch 'master' of github.com:chai2010/book-gopl-zh
This commit is contained in:
commit
7372746639
@ -163,12 +163,13 @@ type Memo struct {
|
|||||||
|
|
||||||
// Get is concurrency-safe.
|
// Get is concurrency-safe.
|
||||||
func (memo *Memo) Get(key string) (value interface{}, err error) {
|
func (memo *Memo) Get(key string) (value interface{}, err error) {
|
||||||
res, ok := memo.cache[key] if!ok{
|
res, ok := memo.cache[key]
|
||||||
|
if !ok {
|
||||||
res.value, res.err = memo.f(key)
|
res.value, res.err = memo.f(key)
|
||||||
memo.cache[key] = res
|
memo.cache[key] = res
|
||||||
memo.mu.Lock()
|
memo.mu.Lock()
|
||||||
res, ok := memo.cache[key]
|
res, ok := memo.cache[key]
|
||||||
if !ok {
|
if !ok {
|
||||||
res.value, res.err = memo.f(key)
|
res.value, res.err = memo.f(key)
|
||||||
memo.cache[key] = res
|
memo.cache[key] = res
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user