InfoQ Homepage HTTP Content on InfoQ
-
Smooth HTTP Caching With Rack::Cache
The ways to cache a web application are numerous and often complex. Apart from the very basic page caching, Rails 2.2 introduced conditional GET through the use of HTTP headers: last_modified and etag. Following most of the internet standard caching section of RFC2616, Ryan Tomayko released Rack::Cache.
-
What Is Wrong With Ruby's Net::HTTP?
Ruby's implementation of Net::HTTP has serious performance problems in the current version 1.8.6, caused by some implementation details. Luckily, both Ruby 1.8.7 and 1.9's implementation performs much better.
-
JSR 311 Final: Java API for RESTful Web Services
After a little more than one and a half years, the Java platform gets its own API for building RESTful web services: JAX-RS, JSR 311. InfoQ had a chance to talk to spec leads Marc Hadley and Paul Sandoz.
-
Article: Using ETags to Reduce Bandwith & Workload with Spring & Hibernate
Gavin Terrill explores one of the lessor known facilities available to web developers, the humble "ETag Response Header", and how to integrate its use in a Spring and Hibernate based web app to improve application performance and scalability.
-
Terracotta releases free 4 node Tomcat Session Clustering
JVM clustering vendor Terracotta has released for free use their Terracotta Sessions for Tomcat. The product is based on their distributed shared objects (DSO) product which uses a hub and spoke architecture and can synchronize changes across nodes at the field level (instead of serialization). The license allows projects with up to 4 nodes in their cluster to use it for free.
-
Article: Simple JAVA and .NET SOA interoperability
.NET and Java interop can be made really simple using a REST documentcentric approach. This article compares a REST and SOAP approach to interop as well as the advantages of using HTTP POST vs. GET for REST invocations.