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

Dss nonblocking nif #25

Closed
wants to merge 3 commits into from
Closed

Dss nonblocking nif #25

wants to merge 3 commits into from

Commits on Apr 20, 2012

  1. Copy the full SHA
    1c32390 View commit details
    Browse the repository at this point in the history
  2. Move write operations to a non-scheduler thread.

    We have observed situations in heavy production load where a few
    concurrent writes get backed up behind compactions in such a way that
    work-stealing appears to stop working and the VM can make no further
    process until the blocked schedulers resume.
    
    Read/iteration functionality remains on the scheduler threads, since
    they should never block due to the append-only design of LevelDB.
    dizzyd committed Apr 20, 2012
    Copy the full SHA
    ce927df View commit details
    Browse the repository at this point in the history
  3. Create the reference in the .beam code so the compiler can generate t…

    …he appropriate selective recv optimization
    dizzyd committed Apr 20, 2012
    Copy the full SHA
    a14b9c6 View commit details
    Browse the repository at this point in the history