I am trying to implement the multiprocessing in my application to take advantage of multiple cores. I have created two
Separate process something like this. que = Queue Process(target = geDataFromMdbFile, args=(que , section, MdbFile,)).start() #2 times In geDataFromMdbFile function I create the object and add in to queue (que.put (object)). After that I fetch the object using que.get () and use in my application. but it takes more time To get the data. Any one can help me out this problem. Thanks, Sibtey Mehdi
_______________________________________________ BangPypers mailing list [email protected] http://mail.python.org/mailman/listinfo/bangpypers
