I need to know if there is a way to share memory for an array of bool lists:
s = Array( 'x' , range(10000000))
What do I have to write instead of x to make it an array of lists whose size is 64. Then I have to manipulate "s" in two different processes like these:
#First
for i in range(0,photoCount):
db.newDBS.insert_one({ 'photo' : s[i], 'user_id' : ids[i] })
#Second
s[photoCount].append = inPhoto
What should be the type? Any help or suggestion appreciated. Thank you!