#elixir #timeout #genserver #message #sliding
How to implement sliding timeouts in your elixir genservers
https://engineering.tripping.com/how-to-implement-sliding-timeouts-in-your-elixir-genservers-cc5a2ed70db9
How to implement sliding timeouts in your elixir genservers
https://engineering.tripping.com/how-to-implement-sliding-timeouts-in-your-elixir-genservers-cc5a2ed70db9
Medium
How to implement sliding timeouts in your Elixir GenServers
At Tripping.com, whenever a user makes a search, one of our Elixir microservice spawns up a bunch of GenServers to talk to a few external…
#elixir #phoenix_framework #genserver #batch_processing
Elixir: export, download, zip, and email
https://medium.com/@bvjebin/elixir-export-download-zip-and-email-8492a3322b53
Elixir: export, download, zip, and email
https://medium.com/@bvjebin/elixir-export-download-zip-and-email-8492a3322b53
Medium
Elixir: Export, Download, Zip, and Email
Recently, one of my clients wanted a feature in their Elixir Phoenix application which should export the data in a .csv,
#elixir #genserver
You might not need a genserver
https://dev.to/jackmarchant/you-might-not-need-a-genserver-24h1
You might not need a genserver
https://dev.to/jackmarchant/you-might-not-need-a-genserver-24h1
The DEV Community
You might not need a GenServer
It can be confusing sometimes, to know when to use a GenServer. There are a couple of modules, including Task and Agent that may fit your purpose better.
#elixir #lua #mud #mmo #genserver
Hosting a lua script inside an elixir genserver for fun and games
https://medium.com/@KevinHoffman/hosting-a-lua-script-inside-an-elixir-genserver-for-fun-and-games-2c0662660007
Hosting a lua script inside an elixir genserver for fun and games
https://medium.com/@KevinHoffman/hosting-a-lua-script-inside-an-elixir-genserver-for-fun-and-games-2c0662660007
Medium
Hosting a Lua Script inside an Elixir GenServer for Fun and Games
Before I get into the tech, I want to take a moment to talk about side projects. I have the luxury of enjoying my job and I routinely find…
#elixir #otp #genserver #processes #beam
Otp in elixir: learn genserver by building your own url shortener
https://medium.com/ilijas-musings-on-software-development/otp-in-elixir-learn-genserver-by-building-your-own-url-shortener-5f49647cba2e
Otp in elixir: learn genserver by building your own url shortener
https://medium.com/ilijas-musings-on-software-development/otp-in-elixir-learn-genserver-by-building-your-own-url-shortener-5f49647cba2e
Medium
OTP in Elixir: Learn GenServer by Building Your Own URL Shortener
Elixir works on the BEAM virtual machine and inherits plenty from Erlang’s rich history, and a bit more — something called OTP.
#elixir #erlang #otp #functional_programming #genserver
Orchestrating genserver state changes with `handle_continue`
https://medium.com/@adammokan/orchestrating-genserver-state-changes-30ab84866678
Orchestrating genserver state changes with `handle_continue`
https://medium.com/@adammokan/orchestrating-genserver-state-changes-30ab84866678
Medium
Orchestrating GenServer state changes with `handle_continue`
A minor addition to Erlang/OTP 21 that could make life a little easier
#elixir #erlang #genserver #genstage
Genstage in erlang/elixir: easy as jelly!
https://medium.com/@navidmostafiz/genstage-in-erlang-elixir-easy-as-jelly-20e0570a1223
Genstage in erlang/elixir: easy as jelly!
https://medium.com/@navidmostafiz/genstage-in-erlang-elixir-easy-as-jelly-20e0570a1223
Medium
GenStage in Erlang/Elixir: Easy as Jelly!
A GenStage facilitates communication between different Erlang/Elixir modules on the same or different nodes using a publisher-subscriber…
#elixir #genserver #task #concurrency
Using a genserver to handle asynchronous and concurrent tasks
https://dev.to/jackmarchant/using-a-genserver-to-handle-asynchronous-and-concurrent-tasks--3g96
Using a genserver to handle asynchronous and concurrent tasks
https://dev.to/jackmarchant/using-a-genserver-to-handle-asynchronous-and-concurrent-tasks--3g96
DEV Community
Using a GenServer to handle asynchronous and concurrent tasks
Inter-process communication can be tricky to get your head around. This article discusses an example of how it can be used to solve a real problem.
#elixir #sockets #genserver
Elixir socket like genserver
https://medium.com/@mrwolf85/elixir-socket-like-genserver-7fadf8ec53b3
Elixir socket like genserver
https://medium.com/@mrwolf85/elixir-socket-like-genserver-7fadf8ec53b3
Medium
Elixir socket like GenServer
In this story I will show you an implementation of socket server through :gen_tcp. Not always that is the right way to implement a socket…
#elixir #timer #genserver
Simple genserver with periodical callback
https://medium.com/@mrwolf85/simple-genserver-with-periodical-callback-256b39d90f7b
Simple genserver with periodical callback
https://medium.com/@mrwolf85/simple-genserver-with-periodical-callback-256b39d90f7b
Medium
Simple GenServer with periodical callback
In this story I will show how can we use the Elixir tools for implementing an GenSever with a call back who is called every is 10 seconds.
#elixir #otp #genserver
How we scrapped and aggregated data from multiple sources using otp
https://medium.com/coletiv-stories/how-we-scrapped-and-aggregated-data-from-multiple-sources-using-otp-beccdb90f5f3
How we scrapped and aggregated data from multiple sources using otp
https://medium.com/coletiv-stories/how-we-scrapped-and-aggregated-data-from-multiple-sources-using-otp-beccdb90f5f3
Medium
How we scrapped and aggregated data from multiple sources using OTP
Just like in the documentary series “Big, Bigger, Biggest” we are going to show the different versions we developed on a real project…