Best of Elixir2023

  1. 1
    Article
    Avatar of flydotioFly.io·2y

    Rethinking Serverless with FLAME

    FLAME is a pattern for elastically scaling applications without the need to manage servers or rewrite the entire application. It allows you to wrap existing app code in a function and run it in a temporary copy of your app. FLAME can be implemented in different languages, but the Elixir flame library is specifically mentioned in the article. The library includes features like process placement and remote monitoring to handle pool scale-up and scale-down logic and to optimize resource usage. FLAME removes the complexities and layers of communication associated with traditional FaaS solutions.

  2. 2
    Article
    Avatar of glcGolang News·3y

    An actor based Framework using technologies and design patterns of Erlang/OTP in Golang

    The easiest way to create an OTP-designed application in Golang is to leverage Erlang/OTP experience with Golang performance. Ergo Framework implements DIST protocol,ETF data format and OTP design patterns. It implements Saga design pattern – a sequence of transactions that updates each service state and publishes the result.

  3. 3
    Article
    Avatar of phoenix-filesPhoenix Files·3y

    Elixir and Rust Is a Good Mix

    Elixir is designed to make using Rust and its package ecosystem trivial. Elixir and Rust is a good mix and is way more difficult to work with when you are manually using this via C.io. If you want to deploy your Phoenix LiveView app, then check out how to get started.

  4. 4
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    Discover the Power of Functional Programming with Elixir

    A new course will teach you how to build your own Elixir applications and apply functional programming concepts in your projects. Elixir is a dynamic, functional programming language built on the Erlang Virtual Machine (BEAM) The course covers a wide range of topics, starting with an introduction to Elixir and functional programming.

  5. 5
    Article
    Avatar of phoenix-filesPhoenix Files·3y

    Minimum Viable ChatGPT Plugin

    ChatGPT plugin is essentially a manifest file and an OpenAPI spec, to tell ChatGPT how to consume an API. The only prerequisite is a searchable database; this can be anything that accepts text queries and returns data you want, from SQLite full text search to a third party API like Algolia.

  6. 6
    Article
    Avatar of wttjWelcome Tech·3y

    The 3 features that will make you fall for Elixir

    Discover the features of Elixir that make it elegant and efficient! Explore pattern matching, unit testing, and concurrency in this beginner-friendly guide.