Chapter Conclusion

We'll conclude this chapter with a quick summary of what we've learned.

Summary #

HTTP #

REST and the Atom format offer an easy way to implement asynchronous communication. HTTP is used as the communication protocol which has several advantages:

  • HTTP is well understood.
  • HTTP has already proven its scalability many times.
  • Most of the time HTTP is used in projects to transfer other content like JSON via REST or to deliver HTML pages.
  • Most teams have the necessary experience to implement scalable systems with HTTP.
  • HTTP caching is supported hence, polling of Atom resources can be implemented very efficiently.
...