go的rpc出現提示:method Xxx has wrong number of ins: 1

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

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


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.