Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Elixir + Rails
Search
Haris Dizdarevic
March 24, 2017
Programming
0
37
Elixir + Rails
Combine Elixir with Rails, writing background jobs in elixir
Haris Dizdarevic
March 24, 2017
Tweet
Share
Other Decks in Programming
See All in Programming
【第4回】関東Kaggler会「Kaggleは執筆に役立つ」
mipypf
0
950
オープンセミナー2025@広島LT技術ブログを続けるには
satoshi256kbyte
0
150
あのころの iPod を どうにか再生させたい
orumin
2
2.5k
ソフトウェアテスト徹底指南書の紹介
goyoki
1
120
ワープロって実は計算機で
pepepper
2
1.4k
Vue・React マルチプロダクト開発を支える Vite
andpad
0
110
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
250
Rancher と Terraform
fufuhu
1
140
未来を拓くAI技術〜エージェント開発とAI駆動開発〜
leveragestech
2
190
AIでLINEスタンプを作ってみた
eycjur
1
220
Claude Codeで実装以外の開発フロー、どこまで自動化できるか?失敗と成功
ndadayo
3
1.7k
OSS開発者という働き方
andpad
5
1.5k
Featured
See All Featured
How STYLIGHT went responsive
nonsquared
100
5.8k
Optimising Largest Contentful Paint
csswizardry
37
3.4k
Large-scale JavaScript Application Architecture
addyosmani
512
110k
A Tale of Four Properties
chriscoyier
160
23k
Faster Mobile Websites
deanohume
309
31k
Gamification - CAS2011
davidbonilla
81
5.4k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
110
20k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
27k
GitHub's CSS Performance
jonrohan
1032
460k
Designing for humans not robots
tammielis
253
25k
Navigating Team Friction
lara
189
15k
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.4k
Transcript
RAILS + ELIXIR
RAILS + ELIXIR INTRODUCTION ▸ Rails pros ▸ Rails cons
▸ Elixir pros ▸ Elixir cons ▸ Combining Elixir with Rails ▸ Code Examples
RAILS PROS ▸ Tooling - app structure, common patterns ▸
Libraries - gems ▸ Large Community ▸ Productivity
RAILS CONS ▸ Runtime Speed ▸ Boot Speed ▸ Multithreading
▸ Concurrency ▸ Mutable state
ELIXIR PROS ▸ Erlang!! ▸ Ruby like syntax ▸ Fault
tolerant, do or do not there is no try - yoda ▸ Better utilises multiple processors ▸ Functional, immutable state
ELIXIR CONS ▸ Small community ▸ Learning curve (FP approach)
▸ Not that fast ▸ Functional
COMBINING RAILS AND ELIXIR ▸ Background jobs in elixir/phoenix ▸
Elixir is more performant than ruby ▸ Handling concurrency is a breeze with Elixir