On post/parameters/locations, there is also correc...
# ktor
o
On post/parameters/locations, there is also correctness and performance reason. If we want to populate parameters from POST content and use them in routing, we would need to actually read content before doing any routing, and that would be a) not very performant for fast-fail paths b) miss any interceptors installed for routing subtrees c) has potential for a post-bomb, like claim something is form-multipart and push huge content into it. We would need to read the content before we even know if POST is supported on that route.
👍 2