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.
たとえば、
{'name':'Ruth', 'age':28, 'city':'madrid'}
この JSON はインデックス化され、文字列として保存されます。応答でこのフィールド値を JSON として返す方法はありますか?
クエリの最後に &wt=json を追加して、Solr が JSON 形式で応答を返すようにします。XML がデフォルトです。例えば:
http://localhost:8080/solr/select?q=*&wt=json
私はこれに出くわしました
https://issues.apache.org/jira/browse/SOLR-1690