I have write a py script with multiprocess, like this:
import arcpy
from multiprocessing import Pool
def worker(fc):
arcpy.featureclasstofeatureclass(fc,r"in_memory","tempfc")
## do something for tempfc
arcpy.delete_management("in_memory")
if __name__=="__main__":
p=Pool(3)
fcs=..... ## get some featureclasses
p.map(worker,fcs)
p.close()
p.join()
I want to know if the created "tempfc" and deleted in_memory workspace will be mutually influenced in different subprocess?