I can create shared variables like @everywhere i=1
but how do I create variables local to a worker. The only possibility is through RemoteRefs with take and put, but this seems overly complicated. What I have in mind is a problem where all the workers only need communicated with the main thread for scheduling and all the computations can be done locally. I would like the results to be stored in local array and be fetched to the main thread once all calculations have finished. For this I need to create a local array on each worker. But I don't know how. Thanks, Sebastian
