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
Currently, apply builds a list of all the inputs instead of incrementally applying the function. This can result in large memory usage. Threading can be used to treat the AsyncIterable[T] stream as a sync Iterable[T] and apply the function without materializing a whole list. This would require users who want to build a list to explicitly create the list from the iterable.
The text was updated successfully, but these errors were encountered:
Currently,
apply
builds a list of all the inputs instead of incrementally applying the function. This can result in large memory usage. Threading can be used to treat theAsyncIterable[T]
stream as a syncIterable[T]
and apply the function without materializing a whole list. This would require users who want to build a list to explicitly create the list from the iterable.The text was updated successfully, but these errors were encountered: