Try this:

    func (store *Store) addToStore(destination map[string]*Distribution, key 
string, value int64) {
       store.lock.Lock()
       distribution, exists := destination[key]
       if !exists {
          store.lock.Unlock()
          distribution = NewDistribution()
          distribution.addSample(value)
          store.lock.Lock()
          distr, ex := destination[key]
          if !ex {
              destination[key] = distribution
              store.lock.Unlock()
              return
          }
          distribution = distr
       }
       distribution.addSample(value)
       store.lock.Unlock()
    }

So, lock around allocation eliminated. (and no defer :-) )

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to