Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am building a REST application that makes use of CORS. Every REST call is different and I am finding that there is significant overhead in getting the preflight OPTIONS call. Is there a way to cache and apply a preflight OPTIONS result so that any subsequent calls to the same domain use the cached response?

share|improve this question
1  
Appendum to question: If caching preflights for a smaller scope is not possible, what is the best way to limit the number of preflight requests in a RESTful application? – Rob W Aug 18 '12 at 20:37

2 Answers

Preflight can only be applied to the request, not to the entire domain. I brought the same question up on the mailing list, and there were security concerns. Here's the entire thread: http://lists.w3.org/Archives/Public/public-webapps/2012AprJun/0228.html

There are a few things to consider if you'd like to limit the number of preflight requests. First note that WebKit based browsers set a max preflight cache of 5 minutes:

http://code.google.com/searchframe#OAMlx_jo-ck/src/third_party/WebKit/Source/WebCore/loader/CrossOriginPreflightResultCache.cpp&exact_package=chromium&q=Access-Control-Max-Age&l=42

(I'm not sure if this is true for other browsers). So while you should always set the Access-Control-Max-Age header, the max value is 5 minutes.

Next note that it is impossible to avoid a preflight on PUT/DELETE requests. So updates/deletes to your API will require at least one preflight every 5 minutes.

On GET/POST, avoid custom headers if at all possible, since these still trigger preflights. If your API returns JSON, note that a Content-Type of 'application/json' also triggers a preflight.

If you are willing to bend just how "RESTful" your API is, there are a few more things you can try. One is to use a Content-Type that doesn't need a preflight, like 'text/plain'. Another is to move custom parameters into query parameters (rather than in the path or headers). At the extreme end, you could use a protocol like JSON-RPC, where all requests are made to a single endpoint.

In all honesty, because of the browser's preflight cache limit of 5 minutes, and REST's resource urls, the preflight cache is fairly useless. There's very little you can do to limit preflights over the course of a long running app. I'm hopeful the authors of the CORS spec will try to address this in the future.

share|improve this answer

You can use the Access-Control-Max-Age in preflight response header to specify how long the preflight request can be cached. More info here.

share|improve this answer
2  
When referring sources, please take a recent one. Yours is from 2008, whilst a recent one does also exists: w3.org/TR/cors. That aside, your answer doesn't isn't applicable to the question, unfortunately. The OP does know how to enable the preflight result cache. However, each entry in the result cache is by definition composed of various fields including the request URL. In RESTful applications, the URL is often different, so the result cache is ineffective, unless it can be restricted to a smaller scope, eg. a domain. – Rob W Aug 18 '12 at 20:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.