Mark Erikson

Results 1264 comments of Mark Erikson

Sweet, thanks! Let me know when you've published a new build and I can try this out again.

Hmm. Interesting. Does that mean that when we end up reading the final result of whatever derived / selected calculation in userland app code, that the returned values will no...

Yeah, my gut says that making copies of all the original objects would likely be bad for our intended use case, although I can't prove it off the top of...

Sure. The actual thing that I'm trying to do at the moment is build a new memoization implementation for the Reselect library: - https://github.com/reduxjs/reselect We've got a docs page on...

Yeah, the problem here is that I'm trying to tie together a _non_-"reactive" Redux store, that has already generated a new immutably updated `state` object, with the _derivation_ step :)...

I very briefly tried bumping to v0.0.12 and tried out last night's experiment again. Good news is it _runs_. Bad news is, it seems like it's recomputing significantly more times...

Sure, thank you! I just posted the current WIP over at https://github.com/reduxjs/reselect/pull/605 if you want to take a look.

Yeah, I think that actually is basically equivalent to how `defaultMemoize` works out of the box, which is a shallow equality check on the extracted input values (which show up...

What do you mean by "operations that update the store"?