Currently spending a lot of instance hours just waiting for HTTP POSTs I send to Facebook to complete, even though I don't actually even look at the results of these POSTs (I am doing them to do page posts that users have scheduled through my app).
Even in asynchronous urlfetch, the docs say:
If any URL Fetch requests are pending when the request handler exits, the application server waits for all remaining requests to either return or reach their deadline before returning a response to the user.
Is there a way I can do a POST without waiting for the result?
This was asked once before Asynchronous URLfetch when we don't care about the result? [Python] but those answers are ancient, there might be some straightforward way now?