Discover how Kubernetes continues to shape the industry as developers drive innovation and prepare for the future of K8s.
Observability and performance monitoring: DZone's final 2024 Trend Report survey is open! We'd love to hear about your experience.
GUY LEVIN (@RestCaseApi) is the CTO of RestCase, a company that develops REST API Development Platform in order to help companies and developers speed up development of RESTful services and minimalize time-to-market. Guy is an architect focusing on distributed and cloud systems, full stack software engineer and a DBA. He has over 20 years’ experience of software development in a variety of sectors including medical and healthcare, cyber security, fintech and more. In his free time Guy is experimenting with new technologies, building websites, mobile applications and a blog writer.
Stats
Reputation: | 1348 |
Pageviews: | 998.2K |
Articles: | 12 |
Comments: | 3 |
Comments
Sep 07, 2018 · Lauren Forbes
Hi,
Sorry, I meant Mark Cheshire, chief operating officer of San Francisco-based API gateway vendor 3scale Inc.
Thanks,
Guy
Jan 17, 2018 · Jordan Baker
I think that multiplexing is allowing the client to request several resources at once. Currently, this is possible when the browser is requesting a resource from different sources (like CDN's and etc..). But if you are requesting for example "styles.css" and "scripts.js" from the same location (let's say localhost), it will be requested by the client one by one, opening a connection for each and every resource. In HTTP/2 the client can request several resources at once, they are also will be served faster as it is not synchronous calls anymore. The connection that is always open also contributes to the request \ response times in terms of the time used to open and close a connection is not wasted.
Jul 11, 2017 · Arran Glen
I would not use GET in any case.
I think you can use:
DELETE http://<api>/students
but with additional header indicating some sort of confirmation.