开发者

Using multivalued field in map function

开发者 https://www.devze.com 2023-04-03 05:40 出处:网络
I\'m working on implementing Solr in a project and right now I\'m stuck on a s开发者_运维知识库pecific search including an arr field. The thing is:

I'm working on implementing Solr in a project and right now I'm stuck on a s开发者_运维知识库pecific search including an arr field. The thing is:

I'd like to search sub-id's on an object, these sub-id's are stored in a multivalue field, e.g.:

<arr name="SubIds">
   <int>12272</int>
   <int>12304</int>
   <int>12306</int>
</arr>

The query (or part of the query) that I want to use is as follows: map(SubIds,i,i,1,0)

When I, for example, fill 12304 on the 'i' space in the map function above, I would expect my function to return 1. If I would enter 12345 it should return 0. The thing is that when I run this query it returns 0, or "There's no number 12304 in this field, I return 0".

When removing the 0 from my map function I can see the actual value returned to me (when 12304 return 1, when different return value), in this case that's 12306! I've tried this with some different multivalued fields but the result is the same; it looks like the function is checking the last value in the multivalue field against my filled in ID.

Is this true? And when it does, is there any way in looking through the whole arr and only return 0 when the value doesn't exist in the whole multivalued field?

** Edit: It's just a hunch, but could it be that the map() function automatically orders the arr list when it sees that all the items are of type int (for example). That could mean that the map returns the first number (the highest) which would (in my example) be 12306, not 12304...*

Thanks!


... It looks like function queries don't work with multivalued fields ...

http://lucene.472066.n3.nabble.com/Using-multivalued-field-in-map-function-td3318843.html#a3322023:

Function queries don't work with multivalued field. http://wiki.apache.org/solr/FunctionQuery#Vector_Functions

Given the following case, is there anybody who has a better idea on how I can query the wanted data?

I've got a website full of blogposts and every blogpost has an owner, this owner is refererred to through his/her id. For example: BloggerId = 123. It's also possible that the blog has multiple co-writers, which are also referred to by there BloggerId but these id's are stored in the multivalue field, in my previous example SubIds.

When searching for a specific blogger one searches the BloggerId. Searchresults are influenced by a number of variables, the country/state/more specific geological data, the blogcategory, etc. For this I use a facetted query. Next I want to make some results more important, depending on the BloggerId, I tried to do this with the following query:

?q={!func}map(sum(map(BloggerId,12304,12304,2,0),map(BloggerId,12304,12304,1,0)),3,3,2)&fl=*,score&facet.field=Country&f.Country.facet.limit=6&facet.field=State&fq=(BlogCategory:internet%20OR%20BlogCategory:sports&sort=score%20desc,Top%20desc,%20SortPriority%20asc&start=0&omitHeader=true

In the resulting list, blogs written by BloggerId 12304 should be on top of the list, followed by the blogs where BloggerId 12304 was co-writer. After that, all other blogs that follow the criteria but aren't written (or co-written) by BloggerId 12304.

Maybe I could make this multivalued field a string field (where id's are seperated by ";") and query my value, but if one has a better idea your always welcome!

In the end I chose to add a string valued field with whitespaces to seperate the different values. After that I used the solr.WhitespaceTokenizerFactory class to quickly scan the string for occurences of a specific ID.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号