关于C#版Nebula客户端编译的问题
一、需求背景
从Nebula的Github上可以发现,Nebula为以下语言提供了客户端SDK:
nebula-cpp【关于C#版Nebula客户端编译的问题】我们公司的业务开发语言是C#,但Nebula却没有提供C#版的客户端。
nebula-java
nebula-go
nebula-python
nebula-node
nebula-rust
由于Nebula支持源码编译,索性只好尝试动手编译一个。
二、Thrift简介 1.Thrift是Facebook在2007年贡献给Apache基金会的一个开源项目:https://thrift.apache.org/
Thrift可以支持多种程序语言,例如:C++,C#,Cocoa,Erlang,Haskell,Java,Ocami,Perl,PHP,Python,Ruby,Smalltalk。
Thrift可以作为二进制的高性能的通讯中间件,支持数据(对象)序列化和多种类型的RPC服务
2.Facebook自己也维护了一个Thrift,目前已经和Apache的Thrift差别较大,重写了编译器,重新实现了一个全异步的Thrift Server:https://github.com/facebook/fbthrift
Facebook Thrift is not a distribution of Apache Thrift.3.Nebula的客户端基于Thrift文件进行编译的,但是使用的Thrift编译器,不是Facebook贡献给Apache的那个Thrift,而是Facebook自己维护的那个Thrift,有点绕。
This is an evolved internal branch of Thrift that Facebook re-released to open source community in February 2014.
Facebook Thrift was originally released closely tracking Apache Thrift but is now evolving in new directions.
In particular, the compiler was rewritten from scratch and the new implementation features a fully asynchronous Thrift server.
4.Nebula提供的Thrift模板为:https://github.com/vesoft-inc/nebula-common/tree/master/src/common/interface
文章图片
三、编译前准备工作 1.操作系统
通过VMware搭建的本地CenOS 7,虚拟机与主机健通过NAT网络连接,内存8G,宿主机有梯子可以FQ
文章图片
2.安装依赖
root# yum updateroot# yum install -y make \m4 \git \wget \unzip \xz \readline-devel \ncurses-devel \zlib-devel \gcc \gcc-c++ \cmake \gettext \curl \redhat-lsb-core \bzip2
3.检查主机上的GCC和CMake版本是否正确
root# g++ --versionroot# cmake --version
发现版本不正确,并且git clone也不好使,只好手动下载2.0.1版本的nebula-common:https://github.com/vesoft-inc/nebula-common/tree/v2.0.1
文章图片
4.解压上述的nebula-common-2.0.1.zip解压,进入nebula-common-2.0.1根目录
文章图片
5.依次执行如下命令
// 安装CMake。root# ./third-party/install-cmake.sh cmake-install// 启用CMake。root# source cmake-install/bin/enable-cmake.sh//opt目录添加写权限。root# sudo mkdir /opt/vesoft && sudo chmod -R a+w /opt/vesoft// 安装GCC。安装到opt目录需要写权限,用户也可以修改为其他目录。root# ./third-party/install-gcc.sh --prefix=/opt// 启用GCC。root# source /opt/vesoft/toolset/gcc/7.5.0/enable// 安装第三方依赖root# ./third-party/install-third-party.sh
四、编译 1.进入上述的nebula-common-2.0.1根目录
2.依次执行命令
root#cmakeroot#make
3.查看基于Thrift模板生成的C#代码
nebula-common-2.0.1/src/common/interface/gen-csharp/nebula
文章图片
五、后续工作 目前只是根据Thrift模板生成了对应C#接口的定义和解析,还需要参考Nebula提供的Java的客户端代码,翻译成对应的C#代码
六、参考文档 https://docs.nebula-graph.com.cn/2.0.1/4.deployment-and-installation/1.resource-preparations/
到此这篇关于C#版Nebula客户端编译的文章就介绍到这了,更多相关C#版Nebula客户端编译内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
推荐阅读
- Nebula|Nebula Graph解决风控业务实践
- HarmonyOS API Version 7版本特性说明
- 全方位讲解|全方位讲解 Nebula Graph 索引原理和使用
- 全方位讲解 Nebula Graph 索引原理和使用
- 关于开发中的版本问题的一点小建议
- 和事故斗智斗勇的这些天|关于 error: invalid types ‘int[int]‘ for array subscript 的解决
- #|Zookeeper后端开发工具Curator的使用 | Curator对节点的增删改查 | ACL权限控制 | 分布式锁 | 分布式计数器 | 附带最新版本下载
- nvm解决多项目node-sass与node版本不对应问题
- 算法练习300题|【leetcode刷题】19.回文链表——Java版
- python二维数组切片规则_python中数组切片含义解析