|
|
|
|
|
by sethammons
1298 days ago
|
|
The point I attempted to make was that elixir and your caching needs are orthogonal. However, to indulge Go vs Elixir in this context (note it was two different systems, companies, and scale referenced above): Elixir has the amazing Ecto query builder and I think poor schema design along with good tooling let folks be productive and build a couple of years of cruft into a tangled knot of table dependencies and access patterns and materialized views. Go tends to eschew ORM like things and I believe some pressure on the devs to think more about the actual queries being (hand) generated would have exposed schema inefficiencies earlier (instead of Ecto automagically pulling all the data you need, you see the heavy lifting when writing the queries). And to your point, with a fucked schema and or access patterns, Go vs Elixir or any other language is a moot point. Cheers! |
|