Hi,
The defect you are referencing is closed with a resolution of *Invalid*, so
it seems the scoring is working fine with the join. I've made the next two
tests on my own data and seems it is working:
*TestA*
- fl=id,score
- q=notebook
- fq={!join from=product_list to=id fromIndex=product}id:*
- rows=2
Gives me the next result with the score calculated:
<doc>
<str name="id">4ADCBA5F-B532-4154-8E12-47311DC0FD50</str>
<float name="score">*2.6598556*</float>
</doc>
<doc>
<str name="id">C861CC4A-6481-4754-946F-EA3903371C80</str>
<float name="score">*2.6598551*</float>
</doc>
</result>
*TESTB*
- fl=id,score
- q=notebook AND _query_:{!join from=product_list to=id
fromIndex=product}id:*
- rows=2
Gives me the next result with the score calcualted:
<doc>
<str name="id">5C449525-8A69-409B-829C-671E147BF6BB</str>
<float name="score">*0.1573925*</float>
</doc>
<doc>
<str name="id">D1A719E8-F843-4E8D-AD82-64AA88D78BBB</str>
<float name="score">*0.1571764*</float>
</doc>
Regards.
On Thu, Apr 3, 2014 at 11:42 AM, <[email protected]> wrote:
> Hello,
>
> referencing to this issue:
> https://issues.apache.org/jira/browse/SOLR-4307
>
> Is it still not possible with the solr query time join to use scoring?
> Do I still have to write my own plugin or is there a plugin somewhere I
> could use?
>
> I never wrote a plugin for solr before, so I would prefer if I don't have
> to start from scratch.
>
> THX,
> Moritz
>
>