Laravel Solrium 如何将csv 文件添加到Solr 核心?
Laravel Solarium how to add csv file to Solr core?
我正在尝试制作一个 laravel 项目。用户可以通过 Laravel 将 csv 文件上传到 Solr。我已经连接 solr 并且可以上传 csv 文件。但我不知道如何将 csv 文件添加到 solr 的核心。有什么建议,我该怎么办?
如果您想在 Solr 中索引 csv 信息,您有两个选择:
- 使用 "update" 请求处理程序发送信息。 More info here
- 使用 Solarium 功能添加文档。 Some examples here and Solarium Documents documentations here
我正在尝试制作一个 laravel 项目。用户可以通过 Laravel 将 csv 文件上传到 Solr。我已经连接 solr 并且可以上传 csv 文件。但我不知道如何将 csv 文件添加到 solr 的核心。有什么建议,我该怎么办?
如果您想在 Solr 中索引 csv 信息,您有两个选择:
- 使用 "update" 请求处理程序发送信息。 More info here
- 使用 Solarium 功能添加文档。 Some examples here and Solarium Documents documentations here