Nikhil Akkinikhilakki.in·Sep 21, 2024What is Actor Model?The Actor Model is a conceptual model for dealing with concurrent computation. It was introduced by Carl Hewitt in the 1970s and has become a foundational model for designing distributed systems, particularly those requiring high levels of concurrenc...actor model
Nikhil Akkinikhilakki.in·Sep 7, 2024Go vs Elixir for concurrencyElixir and Go (Golang) are both powerful languages, but they cater to different types of applications and development philosophies. Below is a comparison of their features: 1. Concurrency Model Elixir: Uses the Actor Model for concurrency, built on...128 readsGogolang
Rocky Esselrockyessel.hashnode.dev·Aug 30, 2024A Comprehensive Understanding of Actor Model & How It Acheives Parallel Computation And Scalability In Vara NetworkIntroduction The Vara Network, built on the Gear Protocol, represents a groundbreaking approach in the world of blockchain technology, particularly in terms of parallel computation and scalability. Central to its architecture is the Actor Model, a co...10 likes·73 readsVara Network
freeCodeCampforfreeCodeCampfreecodecamp.org·Jun 10, 2019The boring technology behind a one-person Internet companyBy Wenbin Fang Listen Notes is a podcast search engine and database. The technology behind Listen Notes is actually very very boring. No AI, no deep learning, no blockchain. “Any man who must say I am using AI is not using True AI” :) After reading t...actor model
freeCodeCampforfreeCodeCampfreecodecamp.org·Nov 9, 2018How to implement an Object-Pool with an Actor in KotlinBy osha1 We use object pool in jasync-sql to manage connections to the database. In this post, I will share how it is done in a performant, lock-free manner using Kotlin coroutines with an Actor. An object pool has a very simple API to work with. It ...actor model