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
For the sake of iteration speed, a lot of rq functionality was implemented by directly delegating to lodash. This is not optimal because the use of this.collect() and/or this.spread() means that intermediary arrays are allocated unnecessarily. The code of unzip should be changed to abuse the streaming nature of rq processes while still passing the current doctests. For debugging, tee can be used to check the streaming behavior of the process.
The text was updated successfully, but these errors were encountered:
For the sake of iteration speed, a lot of
rq
functionality was implemented by directly delegating to lodash. This is not optimal because the use ofthis.collect()
and/orthis.spread()
means that intermediary arrays are allocated unnecessarily. The code ofunzip
should be changed to abuse the streaming nature ofrq
processes while still passing the current doctests. For debugging,tee
can be used to check the streaming behavior of the process.The text was updated successfully, but these errors were encountered: