如何创建存储整数列表的solr字段?我认为这应该是可行的,但找不到任何描述如何的文件。我检查了solr字段类型列表,但似乎默认情况下不支持ListType。有人可以帮忙吗?
答案 0 :(得分:0)
只需确保该字段具有multiValued =“true”,然后您就可以在字段中添加任意数量的值。
以JSON格式添加多个值的示例:
$ URL=http://localhost:8983/solr/update/json
$ curl $URL -H 'Content-type:application/json' -d '
[
{
"id" : "MyTestDocument",
"my_int_field" : [10, 100, 5, 25, 59]
}
]'