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 的 XML 文件。是否有 C# 代码可以在不将整个文档重新构建为 .net 类的情况下执行此操作?
谢谢
您可以使用SolrNet并遵循映射详细信息中概述的完全松散的映射步骤。这将允许您仅使用 a代替映射到索引文档的类来创建文档。 Dictionary<string, object>
Dictionary<string, object>
如果您足够灵活,您可以检查 Solr DataImportHandler (DIH),这将允许您直接索引 xml 文件,而无需与 C# 代码进行任何交互。
public class RegistryTableItem { public int Root { get; set; }//assume possible values are 0,1,2,3 public string Name { get; set; } public string Component_ { get; set; } }