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
Yes, you can always do that, but it might have some performance impact. Imagine you want to index a million documents which happen to be a tuple, or dict_values.
Doing list(...) causes everything to be copied from the original tuple into a new list, and then processed by Milli.
What I'm trying to do is have Milli's DocumentBatchBuilder receive the documents straight from the tuple/dict_values.
E.g.
tuple
,dict_values
.Otherwise there might be performance loss during to needless conversions.
The text was updated successfully, but these errors were encountered: