You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I feel pretty comfortable with mapping with pull-streams, but I noticed that this module provides the same functionality. Is it any faster to use $map or should I just do it in my pull-stream?
The text was updated successfully, but these errors were encountered:
But theoretically, there are two reasons you'd use $map here, 1) you have MFR running on the server, so maybe you want to do the map there instead of the client, or 2) because to prepare the data for the $reduce step. it's probably a bit faster to make the map pure js, rather than basically an interpreted mini language. on the other hand, using map may save you serialization/deserialization by sending less data.
I feel pretty comfortable with mapping with pull-streams, but I noticed that this module provides the same functionality. Is it any faster to use
$map
or should I just do it in my pull-stream?The text was updated successfully, but these errors were encountered: