Remix.run Logo
Tinkeringz 6 hours ago

What caching is provided out of the box for Phoenix framework?

conradfr 5 hours ago | parent | next [-]

Doesn't seem to be mentioned in the page but if you're talking about request caching there's libraries like PlugHTTPCache or RequestCache.

Otherwise I usually use Nebulex (annotations are nice for Ecto queries) with ETS as it's faster than with Redis (if you don't care about losing the cache on deployment).

cpursley 4 hours ago | parent | prev [-]

Out of the box in Elixir/Erlang, Phoenix is the web framework layer.