Hi All,
So here's my problem:
I have a Post model
Post :has_many :post_labels
Post :has_many :labels, :through => :post_labels
I want to be able to search through posts that have a certain label.
what I have right now is this:
for indexing
in Post#define_index
indexes post_content
has labels(:id), :as => label_ids
for searching
i've tried all the following but the all return empty arrays
@posts = Post.search "<some part of post_content of a post labeled
with label.id = 1>" , :with_all => {:label_ids => [1]}
or
@posts = Post.search "<some part of post_content of a post labeled
with label.id = 1>" , :with => {:label_ids => 1}
note: regular searching (ie without filtering by label) works fine so
I know I'm indexing post_content right and can index and search, it's
just when I try to limit results to those with a certain label using
the label id attribute that I get no results
--
You received this message because you are subscribed to the Google Groups
"Thinking Sphinx" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/thinking-sphinx?hl=en.