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