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.
curlからこのコマンドを使用して、Apachesolrでデータのインデックスを作成しています
curl "http://localhost:8983/solr/update/extract?literal.id=doc1&uprefix=attr_&fmap.content=attr_content&commit=true" -F "myfile=@/home/ww.pdf"
このコマンドを実行した後、attr_contents属性にコンテンツを追加できますか?
現在のバージョンのSolrでは、インプレース更新(既存のレコードの1つのフィールドのみを変更する)はできません。ドキュメント全体のインデックスを再作成する必要があります。
ただし、リッチドキュメント(PDFなど)にインデックスを付けるときにフィールドを設定する場合は、を使用しますliteral.my_field=some_val。id含めたコマンドでこのように設定しています。
literal.my_field=some_val
id