On Mon, Feb 10, 2014 at 2:20 PM, tao hong <[email protected]> wrote:
> I would like to use `multiprocessing` library for my site. However, I ran > into some import error in the local test environment. Can I have any > suggestions on how to fix this issue? or I have to use `threading` library > instead of `multiprocessing`. Thanks! > You're better off using the backported concurrent.futures; see here for more information: https://groups.google.com/forum/#!msg/google-appengine/TpIUau1Ikp8/4A9fK_DbodgJ What in particular are you using threading for? If you're using threading to access App Engine services, you may want to look into using async functions (for instance, using *db.put_async* over *db.put*). ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
