supercollider VS Disruptor

Compare supercollider vs Disruptor and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
supercollider Disruptor
64 30
5,198 17,020
1.5% 0.9%
8.4 5.4
4 days ago 4 months ago
C++ Java
GNU General Public License v3.0 only Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

supercollider

Posts with mentions or reviews of supercollider. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-03.
  • Recreating the THX Deep Note (2009)
    2 projects | news.ycombinator.com | 3 Sep 2023
    Link to the audio programming language / server they're using in the article: https://github.com/supercollider/supercollider
  • supercollider VS midica - a user suggested alternative
    2 projects | 12 Aug 2023
  • MuseScore 4.1 is now available
    4 projects | news.ycombinator.com | 12 Jul 2023
    For the intrepid, especially those annoyed with the purported input-sluggishness of musescore et al, an interesting text-based alternative is LilyPond https://lilypond.org/

    My dad wrote an opera using LilyPond in vim, though I believe these days he's actually doing more with supercollider, which skips sheetmusic and goes right to sounds: https://supercollider.github.io/

  • Has anyone tried automated mastering?
    1 project | /r/WeAreTheMusicMakers | 5 Jul 2023
  • Why'd you choose programming?
    1 project | /r/ProgrammerHumor | 29 May 2023
    Weirdly enough,I got into programming through music. I got into making experimental electronic music and ended up learning SuperCollider. Figured I’d have to get a real job at some point and I liked learning Supercollider enough that I figured I should try to go back to school and learn some more useful programming languages
  • 13 Years of History Teaching - Now Thrown Into CS.
    3 projects | /r/CSEducation | 30 Apr 2023
    So you’re wondering what would making music with code look like? The tools I’m familiar with are TidalCycles, Sonic Pi, and SuperCollider. I’m having a hard time describing what it’s like to make music with tools like these so here’s a video of a performance. One person is live coding the music and the other is live coding the visuals. I think it’s super cool how the music is improvised and built over time by layering commands. Some keywords you could search to see more examples would be Algorave and Livecoding.
  • Has anyone else noticed a weird noise coming from their Starlite?
    1 project | /r/starlabs_computers | 19 Apr 2023
    So far mostly Vim (not for coding, just writing so far), NetHack, Firefox, and mpd and ncmpcpp. Also mpv occasionally. I'm planning on installing SuperCollider at some point too and getting back into that, but that shouldn't be too heavy either.
  • Clicks & Cuts Minimal Sounds & One Shots
    1 project | /r/TechnoProduction | 17 Apr 2023
    I would say no there aren't any sample packs for this kind of stuff because this entire scene developed around using a samplers and sampling as well as some computer tools like Max/Msp, SuperCollider, Recycle, Cool Edit Pro and some other stuff I am quite likely forgetting at the moment. Also you might look at some of the IRCAM stuff too.
  • Ask HN: What audio/sound-related OSS projects can I contribute to?
    22 projects | news.ycombinator.com | 22 Mar 2023
  • Is there any alternative to sonic pi?
    1 project | /r/musicprogramming | 16 Mar 2023
    Sonic pi is basically a wrapper for the amazing language Supercollider (https://supercollider.github.io/). I highly recommend watching Eli Fieldsteel's excellent tutorials on it (https://www.youtube.com/watch?v=yRzsOOiJ_p4&list=PLPYzvS8A_rTaNDweXe6PX4CXSGq4iEWYC) to see some of what its capable of (I think he is almost a finished a new book on it as well).

Disruptor

Posts with mentions or reviews of Disruptor. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-14.
  • Gnet is the fastest networking framework in Go
    2 projects | news.ycombinator.com | 14 Mar 2024
    https://lmax-exchange.github.io/disruptor/#_what_is_the_disr.... Unfortunately IIUC writing this in Go still prevents the spin-locked acceptor thread from achieving the kind of performance you could get in a non-GC language, unless you chose to disable GC, so I'd guess Envoy is still faster.

    https://gnet.host/docs/quickstart/ it's nice that you can use this simply though. Envoy is kind of tricky to setup with custom filters, so most of the time it's just a standalone binary.

    [0] https://blog.envoyproxy.io/envoy-threading-model-a8d44b92231...

    [1] https://lmax-exchange.github.io/disruptor/#_what_is_the_disr...

  • A lock-free ring-buffer with contiguous reservations (2019)
    9 projects | news.ycombinator.com | 29 Feb 2024
    See also the Java LMAX Disruptor https://github.com/LMAX-Exchange/disruptor

    I've built a similar lock-free ring buffer in C++11 https://github.com/posterior/loom/blob/master/doc/adapting.m...

  • JEP Draft: Deprecate Memory-Access Methods in Sun.misc.Unsafe for Removal
    3 projects | news.ycombinator.com | 16 Jan 2024
    "Why we chose Java for our High-Frequency Trading application"

    https://medium.com/@jadsarmo/why-we-chose-java-for-our-high-...

    LMAX Disruptor customers

    https://lmax-exchange.github.io/disruptor/

    Among many other examples.

  • LMAX Disruptor – High Performance Inter-Thread Messaging Library
    1 project | /r/hackernews | 20 Nov 2023
    4 projects | news.ycombinator.com | 17 Nov 2023
    Current documentation

    https://lmax-exchange.github.io/disruptor/

  • Progress on No-GIL CPython
    5 projects | news.ycombinator.com | 20 Oct 2023
    LMAX Disruptor has on their wiki that average latency to send a message from one thread to another at 53 nanoseconds. For comparison a mutex is like 25 nanoseconds and more if Contended but a mutex is point to point synchronization.

    The great thing about it is that multiple threads can receive the same message without much more effort.

    https://github.com/LMAX-Exchange/disruptor/wiki/Performance-...

    https://gist.github.com/rmacy/2879257

    I am dreaming of language that is similar to Smalltalk that stays single threaded until it makes sense to parallise.

    I am looking for problems to parallelism that are not big data. Parallelism is like adding more cars to the road rather than increasing the speed of the car. But what does a desktop or mobile user need to do locally that could take advantage of the mathematical power of a computer? I'm still searching.

  • Disruptor 4.0.0 Released
    1 project | news.ycombinator.com | 29 Sep 2023
  • Anything can be a message queue if you use it wrongly enough
    6 projects | news.ycombinator.com | 4 Jun 2023
    Database config should be two connection strings, 1 for the admin user that creates the tables and anther for the queue user. Everything else should be stored in the database itself. Each queue should be in its own set of tables. Large blobs may or may not be referenced to an external file.

    Shouldn't a message send be worst case a CAS. It really seems like all the work around garbage collection would have some use for in-memory high speed queues.

    Are you familiar with the LMAX Disruptor? Is is a Java based cross thread messaging library used for day trading applications.

    https://lmax-exchange.github.io/disruptor/

  • Any library you would like to recommend to others as it helps you a lot? For me, mapstruct is one of them. Hopefully I would hear some other nice libraries I never try.
    21 projects | /r/java | 27 May 2023
    Disruptor for inter-thread messaging
  • Measuring how much Rust's bounds checking actually costs
    3 projects | /r/rust | 30 Nov 2022
    I have never worked in any industries where a perf margin was that small. It is funny, in HFT there are folks using Lmax (Java) and then you have folks writing their own TCP/IP stacks on FPGAs to do trading.

What are some alternatives?

When comparing supercollider and Disruptor you can also consider the following projects:

Sonic Pi - Code. Music. Live.

JCTools

faust - Functional programming language for signal processing and sound synthesis

Agrona - High Performance data structures and utility methods for Java

Viper4Android-presets - This repository finds a collection of preset for viper4android 2.7+

fastutil - fastutil extends the Java™ Collections Framework by providing type-specific maps, sets, lists and queues.

csound - Main repository for Csound

MPMCQueue.h - A bounded multi-producer multi-consumer concurrent queue written in C++11

pure-data - Pure Data - a free real-time computer music system

Eclipse Collections - Eclipse Collections is a collections framework for Java with optimized data structures and a rich, functional and fluent API.

glicol - Graph-oriented live coding language and music/audio DSP library written in Rust

Javolution