Has anyone here played with Redux in Ember appliactions? Does it have any benefits? I feel like the Ember architecture is very similar…
thanks @jasonmit i’ll check it out
@jasonmit how does ember-redux compare with ember-data? they seem to have some similarties… can some one help?
Ember-data is great… but, for me, only if you have a simple model (because async is too complex if it is not) and if you handle few data at a time (because ajax performance can be a problem). So, if you have to handle your data in local, why to be worried about asynchronous, even with async / await in ES6?
And for me, the use of Redux in a Ember application is the opportunity to handle immutable data and to introduce functional programming that is great!