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 ?
- Matrix Params are cached, Pattern: http://some.where/thing;paramA=1;paramB=6542
- Request/Query Params aren't cached, Pattern: http://some.where/thing?paramA=1¶mB=6542
- 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 ?