Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用带有 solr 的 riak nosql 数据库。我知道如何使用以下基本类型索引 int 值和后缀 _i 索引 solr 中的字段,索引字符串值和后缀 _s 索引长值,后缀 _l 像这样。
现在我想在 solr 中索引 List。我该怎么做。
多值字段(即列表)的约定是 *_ls 表示 longs,*_ss 表示字符串,*_fs 表示浮点数等。例如,如果对象的字段letters_ss包含['A', 'B'],则可以通过以下任何一种方式找到该对象:letters_ss:A, letters_ss:B, 甚至letters_ss:A AND letters_ss:B.
letters_ss
['A', 'B']
letters_ss:A
letters_ss:B
letters_ss:A AND letters_ss:B
或者,您可以创建与您的数据类型匹配且不依赖命名约定的自定义模式。