摘要:
zookeeper权限管理概述1、在zookeeperC的API里面,设置ACL的时候需要传入一个类型为struct ACL的结构指针,structACL结构类型的定义如下:structACL_vector { int32_t count; struct ACL *data;};可以看出,该结构包含... 阅读全文
摘要:
http://wangjunle23.blog.163.com/blog/static/11783817120126155282640/1、在.proto文件中定义消息格式2、使用protobuf编译器3、使用c++ api来读写消息0、为何使用protobuf?1、原始内存数据结构,可以以二进制方... 阅读全文
摘要:
class LIBPROTOBUF_EXPORT MessageLite { public: inline MessageLite() {} virtual ~MessageLite(); // Basic Operations --------------------------------... 阅读全文