Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deploy copy-on-write for more efficient messaging #38

Merged
merged 4 commits into from
Mar 27, 2019

Commits on Dec 13, 2018

  1. Deploy copy-on-write for more efficient messaging

    Benchmarking Broker revealed high copying overhead, because Broker
    internally copies topics and data frequently the streams between actors.
    Using a copy-on-write tuple over topic and data instead of a pair avoids
    copies as long as messages are accessed as read-only.
    Neverlord committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    2147f4e View commit details
    Browse the repository at this point in the history
  2. Port examples to new API

    Neverlord committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    b4234aa View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2019

  1. Configuration menu
    Copy the full SHA
    a89bc9f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a7e61a7 View commit details
    Browse the repository at this point in the history