|
|
|
|
|
by foggyboi
2556 days ago
|
|
I learned by converting a simple Rails API that I had running to do one or two things into a Phoenix API. In my case, it was very eye opening both because it was basic ETL and because it was something that benefited from high concurrency. I especially recommend this approach because it gives you more or less the most complete cross-section of some basic data structures, some web stuff, and some database stuff via their db adapter of choice, Ecto, which is excellent. Each part can be a pretty steep (but fairly quick) adjustment depending on your background. |
|
Appreciate the input, thank you!