flowmatic VS dream-programming-language

Compare flowmatic vs dream-programming-language and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
flowmatic dream-programming-language
2 1
249 1
- -
7.3 6.6
about 1 month ago 5 months ago
Go
MIT License -
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.

flowmatic

Posts with mentions or reviews of flowmatic. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-19.
  • Async rust – are we doing it all wrong?
    9 projects | news.ycombinator.com | 19 Jul 2023
    I do that of course, and that's one of the easiest ways to use async Rust. In real projects you need much more however. F.ex. I had to code an example of how to add tasks to an already running pool of tasks and posted my findings here: https://github.com/dimitarvp/rust-async-examples/blob/main/e... (there's #2 as well with some more comments and a different approach).

    The fact that I needed to make a GitHub repo and start making show-and-tell demos on how to do various things with async Rust to me is both a red flag and me being diligent BUT it should be more obvious. And promoted in docs.

    Rust started suffering from "you got all the nuts and bolts in place, now build your own solution, son" syndrome which I grew to dislike. Too low-level. I wouldn't mind something akin to e.g. Golang's flowmatic library (check the first two examples at the top of the README): https://github.com/carlmjohnson/flowmatic

  • Flowmatic: Structured concurrency made easy
    2 projects | /r/golang | 7 Jul 2023

dream-programming-language

Posts with mentions or reviews of dream-programming-language. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-19.
  • Async rust – are we doing it all wrong?
    9 projects | news.ycombinator.com | 19 Jul 2023
    How would you do control flow and scheduling and parallelism and async efficiently with this code?

    `db.save()`, `download()` are IO intensive whereas `document.query("a")` and `parse` is CPU intensive.

    I think its work diagram looks like this: https://github.com/samsquire/dream-programming-language/blob...

    I've tried to design a multithreaded architecture that is scalable which combines lightweight threads + thread pools for work + control threads for IO epoll or liburing loops:

    Here's the high level diagram:

    https://github.com/samsquire/ideas5/blob/main/NonblockingRun...

    The secret is modelling control flow as a data flow problem and having a simple but efficient scheduler.

    I wrote about schedulers here and binpacking work into time:

    https://github.com/samsquire/ideas4#196-binpacking-work-into...

    I also have a 1:M:N lightweight thread scheduler/multiplexer:

    https://github.com/samsquire/preemptible-thread

What are some alternatives?

When comparing flowmatic and dream-programming-language you can also consider the following projects:

channelify - Make functions return a channel for parallel processing via go routines.

preemptible-thread - How to preempt threads in user space

pool - :speedboat: a limited consumer goroutine or unlimited goroutine pool for easier goroutine handling and cancellation

rust-async-examples - A collection of Rust async exercises

gpool - gpool - a generic context-aware resizable goroutines pool to bound concurrency based on semaphore.

quinn - Async-friendly QUIC implementation in Rust

ideas4 - An Additional 100 Ideas for Computing https://samsquire.github.io/ideas4/

gleam - ⭐️ A friendly language for building type-safe, scalable systems!

Rouille, Rust web server middleware - Web framework in Rust

parallel-fn - Run functions in parallel :comet:

ideas5 - Batch 5 of Ideas for Computing