One of the more obvious differences between these two ways of "rewriting" URLs is the fact that, well, mod-alias does NOT rewrite URLs at all. That is not what it does. It maps URLs to filesystem paths, which is a slightly different thing but is nevertheless a very important fact to consider here. After your realize the difference, it is easy to understand exactly why mod-rewrite processing takes precedence before mod-alias - filesystem mapping is just about the end of the road in the long chain of Apache finding what to do with an URL, and since the latter maps an URL to a file, it has to follow, not precede, the rewriting of an URL by the former.
Since mod-alias maps URLs to real file locations, you obviously cannot use it to even rewrite query strings - since it does not "rewrite" URLs but maps URLs to files, the following will not work as some novices may expect it to:
AliasMatch ^/product/([[:alnum:]_]+)$ /scripts/products/get_product.php?id=$1
With the above the second parameter to the AliasMatch directive, after having the $1 in it replaced with a match, is taken to be a verbatim path to a file. So, when you request /product/shinytoy, it will, according to the directive above, want to fetch the file at filesystem location /scripts/products/get-product.php?id=shinytoy which is a very unusual filename indeed and most probably not what you want. Yes, ?id=shinytoy is part of the filename. Unless you want to have each of your product URLs to result in looking up and handling files with these kind of names, you should definitely consider 'mod_rewrite' instead.
Evidently though, 'mod-alias' can be somewhat faster than 'mod-rewrite', all other things being equal of course. So, if 'mod-alias' can do it for you nicely, and you have a very dense and deep site map, prefer setting up aliases like above (after having learned the important caveat above) rather than rewriting URLs.
Last but not least, the perceived inability of 'mod-alias' to fully rewrite URLs on its own does not mean you cannot get away using it to achieve exactly that. How? Well, consider with the above example that your get-product.php script (no ?id=shinitoy at the end though!) would still have access to the URL string (via _SERVER['REQUEST-URI'] variable, for one), which is still /product/shinytoy as that's what it was. And so it can extract the product identifier from that string and in effect still be able to branch out the correct procedure for fetching and serving the right product:
# In your Apache server configuration
AliasMatch ^/product/([[:alnum:]_]+)$ /scripts/products/get_product.php
/// Your /scripts/products/get_product.php
$m = array();
if(preg_match("/^\/product\/(\w+)$/", $_SERVER['REQUEST_URI'], $m))
{
$product_id = $m[1];
/// You can now fetch and serve the product requested, using the extracted `product_id` variable value. No `mod_rewrite` necessary!
}
If you use 'mod_alias' to simply "send" all requests with path /product/* to a script file and let that script parse its URL further like in above, you have essentially rewritten poor mans 'mod_rewrite' :)