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 上索引文档时,我想执行一些预处理并将单词的同义词存储在文档中。我希望它与文件相关联,因此我计划将此 java 2d 数组存储为 solr 中的一个字段。
How can i add a java object as a field while indexing files in solr ?
在 lucene 中,我看到该字段可以是字节数组,因此我序列化我的对象并将其存储为字节数组,然后再检索它!
看看这个。此外,您可以尝试使用 JAXB/JSON 序列化程序或类似方法将其保存为多值字段。