Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Query parameters: http://example.com/apples?order=random&color=blue

Matrix parameters: http://example.com/apples;order=random;color=blue

  1. When should one use query parameters versus matrix parameters?
  2. Why can matrix parameters be used in the middle of a URL but query parameters cannot? For example: http://example.com/apples;order=random;color=blue/2006/archive
  3. If matrix parameters are a superset of query parameters, why not use them all the time?

You can read more about matrix parameters here: http://www.w3.org/DesignIssues/MatrixURIs.html

share|improve this question

2 Answers

up vote -4 down vote accepted

I haven't heard about Matrix parameters before, but they seem only a different convention from Query parameters.

  1. It depends on your project.
  2. It is a matter of convention. Traditionally GET parameter passing from HTML forms is done via the query parameters where '/' doesn't have any special meaning, and Matrix parameters have '/' defined as a character with special meaning.
  3. They are not a superset, just a different convention.

I don't really get these Matrix parameters, it seems to be only a random URL convention, translated by mod_rewrite and then passed to the actual engine to parse. This way you can interpret '/' as you please.

share|improve this answer
1  
Some clarifications: '/' doesn't have a special meaning for matrix parameters. It's a path separator in either case. Matrix parameters are nothing magical, apparently they're valid URI components that's only recently started gaining popularity. – Gili Dec 31 '08 at 1:16
They're perfectly valid, no doubt. Being a path separator makes the '/' special -- it can't be the part of a name or value while in traditional query parameters it can. – bandi Dec 31 '08 at 1:21
Good point! I guess I'd need to escape them. – Gili Dec 31 '08 at 1:23
@bandi from your answer it's not clear you understand how matrix parameters are interpreted. For example the URL in the question would be parsed into path components like this: http://example.com, /apples;order=random;color=blue, /2006, /archive. That is, order and color are parameters of the /apples path component. You can't do that with query params. – Tobia Feb 14 at 9:59

The differences between Matrix parameters and Query Parameters are much more than just convention.

The main differences are:

  • urls with query params won't have their response cached by intermediaries/proxies (at present)
  • matrix parameters may appear anywhere in path
  • calculating the relative uri is different
  • query params are generally abused to add new verbs instead of using existing methods on resources
  • matrix parameters are not resources, they are aspects that help reference a resource in an information space that is difficult to represent within a hierarchy
  • I've written it up in more detail and with more references in Query vs. Matrix Parameters

    share|improve this answer
    "urls with query params won't have their response cached by intermediaries/proxies". Isn't this purely an implementation-specific thing? I don't see anything in the HTTP standard that calls for this behavior... – Gili Jan 19 '09 at 23:37
    In summary: if what you say is true why wouldn't you migrate all query parameters to matrix parameters? – Gili Jan 19 '09 at 23:38
    @Gili he never said the behavior is mandated by HTTP. from his article: "Intermediaries (proxies) won't cache any url with a query parameter in the url. this is because in the early days of the web, they didn't trust the Cache control information from dynamically generated pages." Specs and real-world practice sometimes (or in most cases) differ. – Hendy Irawan Apr 14 '11 at 13:36
    Thanks for the precise and clear answer. I was thinking along the lines you explained, but with no experience wasn't confident about it. – kobejohn Sep 17 '11 at 11:45
    This answer is 3/5th wrong. The difference with respect to relative URIs and the ability to embed parameters in the middle of a path are true. All other points are wrong, in that matrix parameters will have the exact same problem once they become more popular so they are not different from query parameters in that regard. – Gili Nov 14 '12 at 20:48

    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.