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
#51 introduced the buffering of a CSV/JSON/Parquet file due to serde/serde_json/csv not supporting async.
This will be resolved when they support async, but in the meantime running it inside spawn_blocking() and streaming chunks back over a channel might be workable? See smol::reader().
The text was updated successfully, but these errors were encountered:
#51 introduced the buffering of a CSV/JSON/Parquet file due to serde/serde_json/csv not supporting async.
This will be resolved when they support async, but in the meantime running it inside
spawn_blocking()
and streaming chunks back over a channel might be workable? Seesmol::reader()
.The text was updated successfully, but these errors were encountered: