Another person that doesn't understand processes. I have questions

This page summarizes the projects mentioned and recommended in the original post on /r/elixir

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
  • hexpm

    API server and website for Hex

  • We can then look at that function and see that ultimately it calls Supervisor.start_link(...) on a bunch of children. That means that one process's only job is to start up all those child processes and "supervise" them, meaning if any of them crash it will be notified and be able to handle that. I note that one of the processes runs the code in the module Hexpm.RepoBase which means it's in charge of managing database connections, and one runs the code in the module HexpmWeb.Endpoint which is the process in charge of managing the Phoenix side of things, handling incoming requests, spinning up new processes to handle each one, and directing them to the right controllers and stuff. Then there's a bunch of other modules listed, for things like rate limiting, billing reports, and other stuff. You can look in the codebase for those listed modules if you're interested, but the thing to note is that by putting the module name there, what happens is the supervisor will spawn a new process and run the start_link function of that module within that new process.

  • realtime_signs

  • For instance, here's the supervision tree of an app I worked on at work. It's the app that controls the countdown signs on the subway platforms in Boston.

  • 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.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Examples of idiomatic Phoenix contexts usage with domain modeling?

    2 projects | /r/elixir | 29 Jun 2023
  • Code repositories that help you to become a better Elixir programmer

    7 projects | /r/elixir | 11 Sep 2022
  • Auto Generate [Fake Usernames With Elixir]

    1 project | dev.to | 17 Jan 2022
  • Looking for recommendation of OS phoenix app to look at

    6 projects | /r/elixir | 13 Sep 2021
  • Towards Maintainable Elixir: Boundaries

    1 project | /r/elixir | 3 Mar 2021