In R, how can a data.frame be written to an in-memory raw byte vector in the feather format?
The arrow
package has a write_feather
function in which the destination can be an BufferedOutputStream
, but the documentation doesn’t describe how to create such a stream or access its underlying buffer.
Other than that most other packages assume usage of a local file system rather than in-memory storage.
Thank you in advance for your consideration and response.