Caching dynamic blog content
To help improve performance I am trying to cache as much as possible. I have a blog that currently uses query parameters e.g. blog.html?archiveDate=2015-01&author=Joe-Bloggs&tag={someTagId}
Is the best way to create a cacheable page to use selectors e.g.
/blog.2015-01.Jo-Bloggs.{someTagId}.hrml
Is it good practice to do this?
Is there a good way of reading the selectors, to avoid having to include them all on each request. The nice thing about query string is its provides a key value for each parameter but with selectors it appears I can only use the values.
Can I only pass as values for the things I am searching, I would like to do this ...
/blog.2015-01.hrml
/blog.Jo-Bloggs.hrml
/blog.{someTagId}.hrml
