Uses should know that, if they use caching, they should be careful not to embed any context-specific values in their components (e.g. <%= current_user.first_name %>), or they will be cached once and displayed for all users.
Perhaps we may also provide some way of customizing the cache key so that such components can still be safely cached?
Uses should know that, if they use caching, they should be careful not to embed any context-specific values in their components (e.g.
<%= current_user.first_name %>), or they will be cached once and displayed for all users.Perhaps we may also provide some way of customizing the cache key so that such components can still be safely cached?