win7環境下,golang thrift demo代碼編譯不通過

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

用官方的教程代碼:http://thrift.apache.org/tutorial/go

用網友提供的代碼:Golang RPC 之 Thrift

都出現如下情況

狀況1:

編輯器中就會提醒 Cannot use 'processor' (type *FormatDataProcessor) as type TProcessor 

狀況2:

# ThriftDemo/example
example\example.go:232: cannot use formatDataProcessorDoFormat literal (type *formatDataProcessorDoFormat) as type thrift.TProcessorFunction in assignment:
*formatDataProcessorDoFormat does not implement thrift.TProcessorFunction (wrong type for Process method)
have Process(int32, thrift.TProtocol, thrift.TProtocol) (bool, thrift.TException)
want Process(context.Context, int32, thrift.TProtocol, thrift.TProtocol) (bool, thrift.TException)
example\example.go:240: not enough arguments in call to processor.Process
have (int32, thrift.TProtocol, thrift.TProtocol)
want (context.Context, int32, thrift.TProtocol, thrift.TProtocol)

 

分析原因:

一開始我以為是和環境有關係,我今天在公司用的是win7 64 + Go 1.9.1(發現官方server代碼編譯不過,從1.8.0升級上來的) + thrift 0.10.0官方demo和網上demo怎麼都編譯不過server端,client端沒有問題, 剛在家裡Mac上 Go 1.8.0 + thrift 0.10.0同樣的代碼,沒有問題,但是我忽略的另外一個問題,thrift lib中的go檔案 ,公司的是刪了今天重新下的,家裡的是好幾個月之前

 

推測原因:

thrift是好幾個月前安裝的,而我最近go get  git.apache.org/thrift.git/lib/go/thrift 更新了代碼,造成的代碼版本不一致

 

解決方案:

最終得出結論,是thrift版本和git.apache.org/thrift.git/lib/go/thrift的版本不一致造成的,今天在win7平台上也跑過了,我直接在GOPATH環境下
先刪除 git.apache.org/thrift.git/目錄,然後
mkdir -p git.apache.org/thrift.git/lib/go/thrift
最後,將thrift安裝目錄下的代碼拷貝過去,能通過
我的thrift的目錄:
D:\thrift\src\thrift\lib\go\thrift

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.