:user has_many :books etc.
I want to implement a search which matches against books or users, but as books and users are so closely related, it does't quite feel like a multiple class search.
Essentially I want to perform a full text search against -
book.title
book.description
book.user.username
book.user.aboutuser
... and return ranked book objects. Currently I'm playing around with textacular. Am I right in thinking that this is not really a multiple class search? Can anyone point to a good resource for woking out how to make the query?