Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror

Comment Re:It's not about "convergence". The cloud is dyin (Score 1) 349

I would actually question the effectiveness of using XML or JSON over HTTP as an RPC mechanism. In my experience I get much better performance rolling my own protocol with sockets.

Performance isn't everything. The protocol performance is usually dwarfed by application performance. Using standard data formats over HTTP has some huge advantages: all the pre-existing tools work. For example, you can test your services from the command line using curl, and use other existing tools to parse the data. Debugging a custom protocol and data format over raw sockets is much more difficult. You also get all the existing servers, load balancers, caches, clients, security tools, etc.

Slashdot Top Deals

Thus mathematics may be defined as the subject in which we never know what we are talking about, nor whether what we are saying is true. -- Bertrand Russell

Working...