I have a question on storing objects to plasma. If I have multiple remote calls (or multiple ray.put() in different processes) which return large objects, will these objects be stored to plasma sequently or in parallel?
Actually, sorry I stand corrected on this. We parallelize the putting of each object into the plasma store, but we serialize between objects (so we are still using multiple threads, but multiple ray.puts are serialized).