I have my web.py application running. It receives POST request from outside. The request header contains transfer-encoding: chunked
. When i try to read the data with web.data()
the process starts consuming enormous amount of memory and after couple of minutes server dies.
I have a doubt of this transfer-encoding
type. Does anyone faced same kinda issue?