Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -530,6 +530,22 @@ Integers are serialized using the zig-zag coding (the l.s. bit conveys the sign)
Floats are serialized as IEEE 754 floats (4-byte and 8-byte support is required,
other lengths are optional).

## Implementations

* **C++**
* [swarmcpp](https://github.com/gritzko/swarmcpp)
* **Elixir**
* [ronex](https://github.com/flanfly/ronex)
* **Go**
* [ron](https://github.com/gritzko/ron)
* **Haskell**
* [ron](https://github.com/ff-notes/swarm/tree/master/ron),
modules `RON.Text`, `RON.Binary` and others
* **Java**
* ?
* **JavaScript**
* [swarm](https://github.com/gritzko/swarm)

## The math

RON is [log-structured][log]: it stores data as a stream of changes first,
Expand Down