英文:
hypertable thrift or swig question
问题
我对Hypertable数据库非常感兴趣,目前正在使用Go语言开发一个网络爬虫和索引器,但不幸的是,该语言没有可用的绑定。我在编译swig和Hypertable C++客户端时遇到了困难(太多错误),而且Thrift对Go语言的支持也不完善。有没有办法通过直接编码从Go语言连接到Hypertable的Thrift代理?或者有没有任何建议可以从Go语言访问Hypertable?
谢谢。
英文:
I'm very interested in Hypertable DB, and im currently developing a crawler and indexer in Go-lang, unfortunately there's no binding available for the languange. I'm having a difficulties in compiling swig and hypertable c++ client (too many errors) and thrift don't have a working support for go-lang, is there a way to connect directly to hypertable's thriftbroker by straightforward coding from go? or any suggestion to access hypertable from go?
Thanks.
答案1
得分: 2
在Go语言中可能没有Thrift的支持,但是似乎很快就会有Thrift对Go语言的支持:
https://issues.apache.org/jira/browse/THRIFT-625
看起来来自这个独立项目的代码已经被合并到了Thrift的主干,并将在未来的某个版本中出现(可能是0.7版本)。其中的两个(Thrift的开发版本或独立项目)都可以让你开始使用。
英文:
There may not be Thrift support in Go, but it appears there will soon be Go support in Thrift:
https://issues.apache.org/jira/browse/THRIFT-625
It appears that the code from this standalone project has been checked into the trunk of Thrift, and will appear in some future release (maybe version 0.7). One of those two (the development version of Thrift or the standalone project should get you started).
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论