bayard-proto

Crates.iobayard-proto
lib.rsbayard-proto
version0.8.2
sourcesrc
created_at2020-02-27 05:21:00.870291
updated_at2020-11-07 14:02:27.419936
descriptionProtocol Buffers for Bayard
homepagehttps://github.com/bayard-search
repositoryhttps://github.com/bayard-search/bayard-proto
max_upload_size
id212965
size620,439
Minoru Osuka (mosuka)

documentation

https://bayard-search.github.io/bayard/

README

bayard-proto

Join the chat at https://gitter.im/bayard-search/bayard License: MIT

Bayard is a full-text search and indexing server written in Rust built on top of Tantivy that implements Raft Consensus Algorithm and gRPC.
Achieves consensus across all the nodes, ensures every change made to the system is made to a quorum of nodes.
Bayard makes easy for programmers to develop search applications with advanced features and high availability.

Requirement

The following products are required to build:

  • Rust >= 1.39.0
  • make >= 3.81
  • protoc >= 3.9.2

Install protoc-gen-rust

$ cargo install protobuf-codegen
$ cargo install grpcio-compiler --version=0.4.3

Install protoc-gen-grpc-web

$ curl -o /usr/local/bin/protoc-gen-grpc-web -L https://github.com/grpc/grpc-web/releases/download/1.2.1/protoc-gen-grpc-web-1.2.1-darwin-x86_64
$ chmod +x /usr/local/bin/protoc-gen-grpc-web

ls

Install protoc-gen-go

$ go get -u github.com/golang/protobuf/protoc-gen-go

Generate code

Rust

$ ./protoc_rust.sh

gRPC-Web (JavaScript)

$ ./protoc_grpc-web.sh

Go

$ ./protoc_go.sh

Build

% make build
Commit count: 36

cargo fmt