I just started using the Falcon framework for micro services based on what I read about it.
I'm surprised that it's consistently taking over 1 second for just reading the json payload which is only about 1,500 characters.
payload = req.stream.read()
I put a print statement before and after the above and here's what I got:
'Time before read:', 1483732384.687121
'Time after read:', 1483732385.688327
Can someone please tell me if there's a better way to read the request?
Thanks