1

I read in several posts as I'm learning about http requests about the term "Caching" I know it means faster access but how and where ?

  1. Matrix Params are cached, Pattern: http://some.where/thing;paramA=1;paramB=6542
  2. Request/Query Params aren't cached, Pattern: http://some.where/thing?paramA=1&paramB=6542
  3. Path Params are cached, Pattern: http://www.rest.services.com/item/b

So what does caching mean in this scope? I googled but no luck.

And Are there any other URL patterns ?

Ref: 1,2 From here and 3 from here

Community
  • 1
  • 1
Ismail Marmoush
  • 13,140
  • 25
  • 80
  • 114

1 Answers1

3

All of these can be cached.

You may want to read

http://www.mnot.net/cache_docs/

Julian Reschke
  • 40,156
  • 8
  • 95
  • 98