Skip to content

Commit

Permalink
Merge branch 'master' of github.com:/golang/groupcache
Browse files Browse the repository at this point in the history
  • Loading branch information
adg committed Aug 12, 2013
2 parents 3f89d3e + 9db4a8a commit b912ed8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 69 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ In a nutshell, a groupcache lookup of **Get("foo")** looks like:

3. Amongst all the peers in my set of N, am I the owner of the key
"foo"? (e.g. does it consistent hash to 5?) If so, load it. If
other callers come in (via the same process or via RPC requests
other callers come in, via the same process or via RPC requests
from peers, they block waiting for the load to finish and get the
same answer). If not, RPC to the peer that's the owner and get
same answer. If not, RPC to the peer that's the owner and get
the answer. If the RPC fails, just load it locally (still with
local dup suppresion).
local dup suppression).

## Users

Expand Down
65 changes: 0 additions & 65 deletions groupcache.pb.go

This file was deleted.

2 changes: 1 addition & 1 deletion peers.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ var (
// It is called once, when the first group is created.
func RegisterPeerPicker(fn func() PeerPicker) {
if portPicker != nil {
panic("RegisterInitPeers called more than once")
panic("RegisterPeerPicker called more than once")
}
portPicker = fn
}
Expand Down

0 comments on commit b912ed8

Please sign in to comment.