Top "Http-caching" questions

Eliminate the need to send HTTP requests in many cases, and eliminate the need to send full HTTP responses in other cases, by storing web content closer to where it is consumed.

How to use CXF, JAX-RS and HTTP Caching

The CXF documentation mentions caching as Advanced HTTP: CXF JAXRS provides support for a number of advanced HTTP features by …

java rest cxf jax-rs http-caching
I'm trying to use Java's HttpURLConnection to do a "conditional get", but I never get a 304 status code

Here is my code: final HttpURLConnection conn = (HttpURLConnection) sourceURL.openConnection(); if (cachedPage != null) { if (cachedPage.eTag != null) { conn.setRequestProperty("If-None-Match", …

java http caching http-caching
Is Retrofit+Okhttp using httpCaching as a default in Android?

I use retrofit and okhttp in one of our applications. I can't really find a good explanation for the default …

android http http-caching retrofit okhttp
How do I set Expires: header when using send_data

I have a method in my controller which uses send_data like this: def show expires_in 10.hours, :public => …

ruby-on-rails http-caching
Why does Chrome spend time "downloading" content from cache?

I am serving static content intended to be cached by the browser indefinitely. Chrome is caching it as expected, but …

google-chrome google-chrome-devtools http-caching
Why SOAP can't use HTTP caching mechanisms

I am making a transition from SOAP to REST, and I would like to convince my colleagues that this is …

rest soap http-caching
Laravel Headers and Caching in php

I have a small image generator as part of my laravel4 application. It takes about 700ms to generate the image …

php http-headers laravel laravel-4 http-caching
Azure Web App Not Using GZip Compression

I was using WebPageTest to test the performance of my Azure Web App (ASP.Net vNext Web API/Angular). I …

azure gzip azure-web-app-service http-caching http-compression
Is Cache-Control:must-revalidate obliging to validate all requests, or just the stale ones?

I have a mess with this header, I have read that Cache-Control:must-revalidate oblige to validate all requests with the …

http caching http-caching
Explicitly disable caching for REST services

I am to apply Cache-Control: must-revalidate,no-cache,no-store to all responses from out backend REST services. I have two questions …

rest http-caching