brent-statsig commented on issue #322: URL: https://github.com/apache/avro-rs/issues/322#issuecomment-3458807647
The problem with `Tokio::spawn(async_writer.append(...))` is that you need a `mut` in order to use any of the modification params, which introduces really long periods of locking. The serialization and encoding steps are really heavy, but don't actually need a `mut`, which is why I split it out in my linked PR above -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
