Coder Social home page Coder Social logo

damascus's Introduction

Damascus

Interleave 2 byte streams with default payload fallback when one stream is shorter than the other.

damascus stream0 stream1 default

schema

Example

with files:

echo -ne "AA" > /tmp/as
echo -ne "BBBB" > /tmp/bs
echo -ne "CC" > /tmp/default
cargo run --release /tmp/as /tmp/bs /tmp/default
# writes "AABBCCBB" to stdout

here payload size = 2 bytes

Performance

with unix named pipes:

mkfifo /tmp/fifo1
mkfifo /tmp/fifo2
head -c 1K < /dev/zero > /tmp/default
seq 10000000 > /tmp/fifo1 &
seq 10000000 > /tmp/fifo2 &

payload size = 1KB

./target/release/damascus /tmp/fifo1 /tmp/fifo2 /tmp/default | pv > /dev/null
[1]  - 37875 done       seq 10000000 > /tmp/fifo2
[2]  + 37899 done       seq 10000000 > /tmp/fifo1
 150MiB 0:00:00 [1.35GiB/s] [   <=>

CPU: AMD Ryzen 7 3700X (16) @ 3.600GHz

Note: payload size (i.e. default size) massively impacts throughput:

payload size throughput
2 bytes ~50MiB/s
32 bytes 612MiB/s
64 bytes 1018MiB/s
500 bytes 1.25GiB/s
1KB 1.35GiB/s

License

This software is distributed under the terms of both the MIT license and the Apache License (Version 2.0):

damascus's People

Contributors

picojr avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.