I have dozens of rewrite rules for legacy URLs from a previous incarnation of my application. I see three choices:
- Just add "match" lines in the routes file (config/routes.rb)
- Use rack-rewrite
- Create Nginx/Apache rewrite rules (Nginx in my case)
I imagine that 3 has better performance than 2, which has better performance than 1.
My questions:
- Is that true?
- If so, how much does it matter?
- Are there other trade-offs I might not have considered?
- Any other options altogether besides those three?