Moving data to a parallel process

I have a 2 process and a long running repeated computation, over data that is mostly stationary.

long_run(pos,V,F)

V and F are static huge arrays , they do not change over time.
pos is a small 4x4 array that changes frequently .

I am currently doing the computation as

F1 = @spawn long_run(pos,V,F)

I would like to further reduce data transfer between processes , but I cant seem to find the right way to marshal
V and F to be recognizable on process number 2. help anyone?

Maybe ParallelDataTransfer.jl can be helpful?