Thanks for your work. Just curious: if we are working locally with both Julia and R, then to call a Julia function with a vector argument in R, the following steps have to be executed: serialize the vector into binary data in R → send the data via TCP → deserialize the data into a vector in Julia, right?
If the vector is huge, then the above steps may be expensive. Is there a way to share data without copying on a local PC?