-
-
Save smallnest/51c7c6bf428f139db1ceb9f398457f5c to your computer and use it in GitHub Desktop.
Revisions
-
fiorix revised this gist
Mar 18, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ // Simple groupcache example: https://github.com/golang/groupcache // Running 3 instances: // go run groupcache.go -addr=:8080 -pool=http://127.0.0.1:8080,http://127.0.0.1:8081,http://127.0.0.1:8082 // go run groupcache.go -addr=:8081 -pool=http://127.0.0.1:8081,http://127.0.0.1:8080,http://127.0.0.1:8082 -
fiorix renamed this gist
Mar 18, 2016 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,8 @@ // Group cache example: https://github.com/golang/groupcache // Running 3 instances: // go run groupcache.go -addr=:8080 -pool=http://127.0.0.1:8080,http://127.0.0.1:8081,http://127.0.0.1:8082 // go run groupcache.go -addr=:8081 -pool=http://127.0.0.1:8081,http://127.0.0.1:8080,http://127.0.0.1:8082 // go run groupcache.go -addr=:8082 -pool=http://127.0.0.1:8082,http://127.0.0.1:8080,http://127.0.0.1:8081 // Testing: // curl localhost:8080/color?name=red package main -
fiorix renamed this gist
Mar 18, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
fiorix created this gist
Mar 18, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,57 @@ // Group cache example: https://github.com/golang/groupcache // Running 3 instances: // go run main.go -addr=:8080 -pool=http://127.0.0.1:8080,http://127.0.0.1:8081,http://127.0.0.1:8082 // go run main.go -addr=:8081 -pool=http://127.0.0.1:8081,http://127.0.0.1:8080,http://127.0.0.1:8082 // go run main.go -addr=:8082 -pool=http://127.0.0.1:8082,http://127.0.0.1:8080,http://127.0.0.1:8081 // Testing: // curl localhost:8080/color?name=red package main import ( "errors" "flag" "log" "net/http" "strings" "github.com/golang/groupcache" ) var Store = map[string][]byte{ "red": []byte("#FF0000"), "green": []byte("#00FF00"), "blue": []byte("#0000FF"), } var Group = groupcache.NewGroup("foobar", 64<<20, groupcache.GetterFunc( func(ctx groupcache.Context, key string, dest groupcache.Sink) error { log.Println("looking up", key) v, ok := Store[key] if !ok { return errors.New("color not found") } dest.SetBytes(v) return nil }, )) func main() { addr := flag.String("addr", ":8080", "server address") peers := flag.String("pool", "http://localhost:8080", "server pool list") flag.Parse() http.HandleFunc("/color", func(w http.ResponseWriter, r *http.Request) { color := r.FormValue("name") var b []byte err := Group.Get(nil, color, groupcache.AllocatingByteSliceSink(&b)) if err != nil { http.Error(w, err.Error(), http.StatusNotFound) return } w.Write(b) w.Write([]byte{'\n'}) }) p := strings.Split(*peers, ",") pool := groupcache.NewHTTPPool(p[0]) pool.Set(p...) http.ListenAndServe(*addr, nil) }