3 stable releases

2.0.0 Feb 20, 2024
1.0.24 Nov 30, 2023
1.0.23 Nov 29, 2023

#1000 in Network programming

Download history 226/week @ 2024-01-02 283/week @ 2024-01-09 366/week @ 2024-01-16 460/week @ 2024-01-23 333/week @ 2024-01-30 138/week @ 2024-02-06 118/week @ 2024-02-13 426/week @ 2024-02-20 257/week @ 2024-02-27 297/week @ 2024-03-05 276/week @ 2024-03-12 197/week @ 2024-03-19 322/week @ 2024-03-26 289/week @ 2024-04-02 235/week @ 2024-04-09 423/week @ 2024-04-16

1,328 downloads per month
Used in horaedb-client

Apache-2.0

375KB
9K SLoC

Go 9K SLoC // 0.0% comments Rust 74 SLoC // 0.3% comments Shell 15 SLoC // 0.5% comments

Protocol of Apache HoraeDB™

Crates.io Go Reference

Protocol buffer files for HoraeDB. Projects that manage generated code of different languages are also in this repository. They acts as underlying dependency of client, server and meta.

User Guide

Rust

cargo add horaedbproto

Golang

go get github.com/apache/incubator-horaedb-proto/golang

Java

Add a maven dependency to your project.

<dependency>
    <groupId>org.apache.horaedb</groupId>
    <artifactId>horaedb-proto-internal</artifactId>
    <version>${horaedb-proto-internal.version}</version>
</dependency>

Developer Guide

After modifying the proto files, something else for different programming languages should be done.

Java

  1. Name the maven project to a new version.
  2. Rebuild the maven project lies in the java directory (During the build process, java code for the latest proto will be generated).
  3. Publish the build result to the central maven repository.

Rust

As for the Rust projects that depends on this project, everything will be generated during the build process of themselves. So nothing else needs to be done for Rust.

Golang

  1. Install Protocol Buffers v25.1 compiler.
  2. Execute make go.

Dependencies

~5.5–9.5MB
~132K SLoC