fluxo-js / fluxo

Fluxo is a simple, lightweight (~300LOC) and dependency free data infrastructure lib based on Facebook Flux and Backbone.js. It's compatible with React.js, but you can use with whatever you want to the view/component layer.
15 stars 3 forks source link

Using store internal radio instead external one #31

Closed samuelsimoes closed 8 years ago

samuelsimoes commented 8 years ago

An external pub/sub architecture leads to memory leak creating objects that can be referenced on pub/sub forever unable the garbage collection, so, passing this communication to the store fix this reference problem.

With this adjustment, the "store release" isn't necessary anymore turning Fluxo more reliable and simple to understand.