Elixir 1.9
elixir-lang.org
Elixir 1.9
1–10 of 174 posts
Re: Elixir 1.9
#2interested to know, how the releases feture going to affect the way we deploy elixir/phonenix apps in production ?
Re: Elixir 1.9
#3Re: Elixir 1.9
#4Distillery has helped a lot for sure, so it's nice that it's basically been rolled into the base elixir distro.
Re: Elixir 1.9
#5Something striking from the release announcement:
> As mentioned earlier, releases was the last planned feature for Elixir. We don’t have any major user-facing feature in the works nor planned.
Part of me is a little alarmed—no one wants a language to stagnate. José makes it clear that this doesn't mean it's the last version:
> Of course, it does not mean that v1.9 is the last Elixir version. We will continue releasing shipping new releases every 6 months with enhancements, bug fixes and improvements.
Elixir is remarkably extensible. When I was first getting acquainted with the language finding macros with all the expressive ability of a LISP blew my mind. Making powerful macros a core part of the language meant that the language could grow. That in my mind is the most important part of any language's long-term viability.
Fantastic work all who contributed. Thank you for making a fast, functional, and fun language to work with!
Re: Elixir 1.9
#6Re: Elixir 1.9
#7This is great news! The deployment story has progressively improved since I started using Elixir in 2016, but the best way is to just have _one_ community blessed system. Distillery has helped a lot for sure, so it's nice that it's basically been rolled into the base elixir distro.
This means that Distillery will remain the best choice for many of us, including myself.
I have a very simple deploy process with Edeliver and Gitlab CI/CD that basically just consists of pushing or merging a commit to master that passes the tests. There's zero down-time and it doesn't require containers on the server.
I'd also say that the "deployment story" wasn't any worse than Rails or other stacks in the past except in that people have a choice of having a stateful server.
This is how I'm doing it now: https://youtu.be/-mm44ADU3kc?t=172
Re: Elixir 1.9
#8quite new to elixir ( still haven't deployed anything to prod ). interested to know, how the releases feture going to affect the way we deploy elixir/phonenix apps in production ?
Re: Elixir 1.9
#9Are releases supposed to replace Distillery? If so, are there any particular reasons to switch?
Re: Elixir 1.9
#10quite new to elixir ( still haven't deployed anything to prod ). interested to know, how the releases feture going to affect the way we deploy elixir/phonenix apps in production ?