Standups 5/18/2010 and 5/19/2010: SEO routes

May 19, 2010 Nathan Wilmes

Ask for Help

“Our site requires crafting URLs in a very particular SEO-friendly way. Rails doesn’t seem to give us a good solution for our URLs. Any suggestions?”

One of our clients needs to make their app accept and generate compound URLs that look something like the following:

http://my.site/jkrowling-series-harrypotter-book-1

where author, series, and book are all different domain concepts. Rails RESTful resources don’t really support this format. There wasn’t an immediate solution, but among the peanut gallery of ideas:

  • Hyphens are better than slashes in URL crafting, but Rails doesn’t separate on slashes at all

  • to_param solutions – Overriding to_param to something that starts with an integer ID generates URLs that look very slug-like, but can use standard Rails Domain.find mechanisms. For example, a book.to_param might be overridden to be “1-bookname”, which works for all purposes. The problem with this solution is that it doesn’t quite fit the requirements here, and doesn’t cover the compound needs.

  • Custom routes are always a possibility. You can hook up a special (non-resource) controller that understands flexible browse-y routes like the one above, parses them, and delegates to the more standard resource controllers. The problem here is that you have to figure out a decent delegate pattern and route generation pattern.

  • In general, URL crafting is a separate art from domain model crafting, and Rails doesn’t really cater to this. You will have to design URL-centric code to suit your URL crafting.

“Any ideas on ways to performance test IE7?”

No immediate ideas, but potentially more later.

“When users enter very large search parameters for numbers we get the following exception out of RSolr:”

RSolr::RequestError: Solr Response: For_input_string_11111111111111111111__javalangNumberFormatException

Is there an elegant solution to this aside from validating that all input parameters aren’t larger than max int?

Interesting Things

  • When using named scope methods that refer to other named scope methods, you may discover that your SQL has some redundant condition clauses. This is a bug in Rails 2, and has been true for several versions. However, it’s a harmless bug – MySQL will understand the extraneous condition clauses just fine, without performance implications.

  • Mocking Paperclip for tests is a careful art. See our other blog post: Stubbing out Paperclip ImageMagick in Tests

About the Author

Biography

Previous
Rails devs in Portland, OR: looking for a Revelation?
Rails devs in Portland, OR: looking for a Revelation?

At Pivotal Labs, one of the services we provide is helping clients interview and hire. Pivotal Labs and our...

Next
Stubbing out Paperclip/ImageMagick in Tests
Stubbing out Paperclip/ImageMagick in Tests

Many people use the ultra popular Paperclip library to handle file attachments in Rails. Unfortunately the ...