I'd like to display a comparison page so user can compare the properties of several objects in my database. Any number of objects can be compared. I'd also like it to be bookmarkable (so a 'get').
How should I structure my URL / route for the controller?
Something like /foo_compare/1_5_22 where I split the ids into 1, 5 and 22 in the controller?
Maybe /foo_compare/1/5/22, but how would I set up the route?