Simple & Performant Serialization with RPC

Performance of Protocol Buffers with flexibility of JSON

Github | Crates.io | Documentation

Features

NoProto allows you to store, read & mutate structured data with very little overhead. It's like Protocol Buffers except schemas are dynamic at runtime and buffers are mutable. It's like JSON but way faster, type safe and supports native types. Also unlike Protocol Buffers you can insert values in any order and values can later be removed or updated without rebuilding the whole buffer.

Like Protocol Buffers schemas are seperate from the data buffers and are required to read, create or update data buffers.

Byte-wise sorting comes in the box and is a first class operation. Two NoProto buffers can be compared at the byte level without deserializing and a correct ordering between the buffer's internal values will be the result. This is extremely useful for storing ordered keys in databases.

Compared to Protocol Buffers - Faster serialization & deserialization performance - Updating buffers is orders of magnitude faster - Easier & Simpler API - Schemas are dynamic at runtime, no compilation step - Supports more types and better nested type support - Byte-wise sorting is first class operation - Mutate (add/delete/update) existing/imported buffers

Compared to JSON / BSON - Far more space efficient - Significantly faster serialization & deserialization - Deserializtion is zero copy - Has schemas / type safe - Supports byte-wise sorting - Supports raw bytes & other native types

| Format | Zero-Copy | Size Limit | Mutable | Schemas | Language Agnostic | No Compiling | Byte-wise Sorting | |------------------|-----------|------------|---------|---------|-------------------|-----------------|-------------------| | NoProto | ✓ | ~64KB | ✓ | ✓ | ✓ | ✓ | ✓ | | JSON | 𐄂 | Unlimited | ✓ | 𐄂 | ✓ | ✓ | 𐄂 | | BSON | 𐄂 | ~16MB | ✓ | 𐄂 | ✓ | ✓ | 𐄂 | | MessagePack | 𐄂 | Unlimited | ✓ | 𐄂 | ✓ | ✓ | 𐄂 | | FlatBuffers | ✓ | ~2GB | 𐄂 | ✓ | ✓ | 𐄂 | 𐄂 | | Protocol Buffers | 𐄂 | ~2GB | 𐄂 | ✓ | ✓ | 𐄂 | 𐄂 | | Cap'N Proto | ✓ | 2^64 Bytes | 𐄂 | ✓ | ✓ | 𐄂 | 𐄂 | | Veriform | 𐄂 | ? | 𐄂 | 𐄂 | 𐄂 | 𐄂 | 𐄂 |

Quick Example

```rust use noproto::error::NPError; use noproto::NPFactory; use noproto::collection::table::NPTable;

// JSON is used to describe schema for the factory // Each factory represents a single schema // One factory can be used to serialize/deserialize any number of buffers let userfactory = NPFactory::new(r#"{ "type": "table", "columns": [ ["name", {"type": "string"}], ["age", {"type": "u16", "default": 0}], ["tags", {"type": "list", "of": { "type": "string" }}] ] }"#)?;

// create a new empty buffer let mut userbuffer = userfactory.empty_buffer(None); // optional capacity, optional address size (u16 by default)

// set an internal value of the buffer, set the "name" column user_buffer.set(&["name"], "Billy Joel")?;

// assign nested internal values, sets the first tag element user_buffer.set(&["tags", "0"], "first tag")?;

// get an internal value of the buffer from the "name" column let name = userbuffer.get::<&str>(&["name"])?; asserteq!(name, Some("Billy Joel"));

// close buffer and get internal bytes let userbytes: Vec = userbuffer.close();

// open the buffer again let userbuffer = userfactory.openbuffer(userbytes);

// get nested internal value, first tag from the tag list let tag = userbuffer.get::<&str>(&["tags", "0"])?; asserteq!(tag, Some("first tag"));

// get nested internal value, the age field let age = userbuffer.get::(&["age"])?; // returns default value from schema asserteq!(age, Some(0u16));

// close again let userbytes: Vec = userbuffer.close();

// we can now save user_bytes to disk, // send it over the network, or whatever else is needed with the data

Ok::<(), NP_Error>(())

```

Guided Learning / Next Steps:

  1. Schemas - Learn how to build & work with schemas.
  2. Factories - Parsing schemas into something you can work with.
  3. Buffers - How to create, update & compact buffers/data.
  4. RPC Framework - How to use the RPC Framework APIs.
  5. Data & Schema Format - Learn how data is saved into the buffer.

Benchmarks

While it's difficult to properly benchmark libraries like these in a fair way, I've made an attempt in the graph below. These benchmarks are available in the bench folder and you can easily run them yourself with cargo run --release.

The format and data used in the benchmarks were taken from the flatbuffers benchmarks github repo. You should always benchmark/test your own use case for each library before making any decisions on what to use.

Legend: Ops / Millisecond, higher is better

| Library | Encode | Decode All | Decode 1 | Update 1 | Size (bytes) | Size (Zlib) | |--------------------|--------|------------|----------|----------|--------------|-------------| | NoProto | 312 | 469 | 27027 | 3953 | 284 | 229 | | Protocol Buffers 2 | 270 | 390 | 400 | 167 | 220 | 163 | | MessagePack | 38 | 70 | 80 | 35 | 431 | 245 | | JSON | 167 | 134 | 167 | 127 | 673 | 246 | | BSON | 28 | 34 | 35 | 26 | 600 | 279 |

Complete benchmark source code is available here.

In my opinion the benchmarks above make NoProto the clear winner if you ever plan to mutate or update your buffer data. If buffer data can always be immutable and the fixed compiled schemas aren't an issue, Flatbuffers is the better choice.

I also think there's a strong argument here against using data without a schema. The cost of an entirely flexible formats like JSON or BSON is crazy. Putting schemas on your data not only increases your data hygiene but makes the storage of the data far more comapct while increasing the deserialization and serialization perfomrance substantially.

Limitations

Non Goals / Known Tradeoffs

If every CPU cycle counts, you don't mind compiling fixed schemas and you don't plan to mutate your buffers/objects, FlatBuffers/CapnProto is probably the way to go. It's impossible to make a flexible format like NoProto as fast as formats that compile your schemas ahead of time and store data immutably.


MIT License

Copyright (c) 2020 Scott Lott

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.