If it needs so much explanation and discussion, maybe it is not a great idea after all?
The new HTTP QUERY method explained
41–50 of 179 posts
Re: The new HTTP QUERY method explained
#42It's interesting to see additions to HTTP methods as it much feels like the existing ones are set in stone. At least for the time that I have been a developer. I'm curious to see how fast the adoption/support for HTTP QUERY will be. I've had my fair share of situations where I wished for something like HTTP QUERY.
zero. Many libs will/can just request method as a string so you can start coding now > I've had my fair share of situations where I wished for something like HTTP QUERY. Using POST instead comes with no drawbacks
I'm not sure QUERY is a great solution, because in the context of a web application absolutely no one enjoys using a page that does not keep its state on refresh, so that really limits where QUERY makes sense, but if you have a case that is not driven by navigation, great.
Re: The new HTTP QUERY method explained
#43Re: The new HTTP QUERY method explained
#44"QUERY is just GET" "Using GET with a Body works" Seems like this is going everyone's head. You're not supposed to use GET with a Body, this is a hack, therefore having an explicit method makes sense. Just because it works, doesn't mean its the right way
> Just because it works, doesn't mean its the right way
Tell that to anybody in the business long enough to decipher someone else's Perl!Re: The new HTTP QUERY method explained
#45Re: The new HTTP QUERY method explained
#46If it needs so much explanation and discussion, maybe it is not a great idea after all?
Re: The new HTTP QUERY method explained
#47Re: The new HTTP QUERY method explained
#48What do you think people will make the Query request body? Most everything will use this for JSON but it could be anything so what other interesting things do you think will go in there? Query 1 + 1 and get 2?
Re: The new HTTP QUERY method explained
#49I have a weird feeling. Query body is encrypted by https. So CDN will not be able to cache results. In order to make it work right - whole topology of the internet should be redone. Caching on the backend server will not give any real gains for large scale apps.