Re: After the query component has the results, can I do more filtering on them?

2011-07-05 Thread arian487
Sorry for being vague. Okay so these scores exist on an external server and they change often enough. The score for each returned user is actually dependent on the user doing the searching (if I'm making the request, and you make the same request, the scores are different). So what I'm doing is

Re: After the query component has the results, can I do more filtering on them?

2011-07-04 Thread Chris Hostetter
: Sorry for the double post but in this case, is it possible for me to access : the queryResultCache in my component and play with it? Ideally what I want : is this: it could be possible to do what you're describing, but it would probabl be fairly brittle. i know you said earlier thta you

Re: After the query component has the results, can I do more filtering on them?

2011-06-30 Thread arian487
unfortunately the userIdsToScore updates very often. I'd get more Ids almost every single query (hence why I made the new component). But I see the problem of not being able to score the whole resultSet. I'd actually need to do this now that I think about it. I want to get a whole whack of

Re: After the query component has the results, can I do more filtering on them?

2011-06-30 Thread arian487
Sorry for the double post but in this case, is it possible for me to access the queryResultCache in my component and play with it? Ideally what I want is this: 1) I have 1 (just a random large number) total results. 2) In my component I access all of these results, score them, and take the

Re: After the query component has the results, can I do more filtering on them?

2011-06-29 Thread arian487
bump -- View this message in context: http://lucene.472066.n3.nabble.com/After-the-query-component-has-the-results-can-I-do-more-filtering-on-them-tp3114775p3123502.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: After the query component has the results, can I do more filtering on them?

2011-06-29 Thread Ahmet Arslan
So I made a custom search component which runs right after the query component and this custom component will update the score of each based on some things (and no, I definitely can't use existing components).  I didn't see any easy way to just update the score so what I currently do is

After the query component has the results, can I do more filtering on them?

2011-06-27 Thread arian487
So I made a custom search component which runs right after the query component and this custom component will update the score of each based on some things (and no, I definitely can't use existing components). I didn't see any easy way to just update the score so what I currently do is something