這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。
the way to go的$19.8和$19.9裡面的demo:goto_5
$go version
go version go1.1.2 darwin/amd64
$./goto_v5 -http=:8081 -rpc=true //啟動master的時候,會顯示下面一行提示:
2014/12/02 22:36:29 method Count has wrong number of ins: 1
func (s *URLStore) Put(url, key *string) error {for {*key = genKey(s.Count())if err := s.Set(key, url); err == nil {break}}if s.save != nil {s.save <- record{*key, *url}}return nil}func (s *URLStore) Count() int {s.mu.RLock()defer s.mu.RUnlock()return len(s.urls)}
出現這個提示的原因是:
1.RPC can only work through methods with the form (t is a value of type T):
func (t T) Name(args *ArgType, reply *ReplyType) error
2.Count()這個函數本來是私人的,但是錯誤的public了。而且函數的參數和傳回型別跟RPC能處理的Public函數要求不一致。
goto_v1~goto_v4這4個版本沒有加rpc的時候,沒問題。
goto_v5用了rpc,就把這個問題暴露出來了。
解決辦法:
把這兩個地方的Count改成count,重新編譯,運行就ok了!
參考: https://code.google.com/p/go/issues/detail?id=1056