skip to Main Content

Querying Apache Solr with JSON values in brackets

When using Apache Solr's browser search tool (on localhost), when I query *:* (return all), the GET request returns results in the following format: "responseHeader":{ "zkConnected":true, "status":0, "QTime":12, "params":{ "q":"*:*", "_":"1562080387377"}}, "response":{"numFound":164,"start":0,"maxScore":1.0,"docs":[ { "id":"1", "name":["Maria Atkinson"], "email":["[email protected]"], "phone_number":["(408)500-6026x750"], "password":["password"], "_version_":1637959617282572288},…

VIEW QUESTION

Solr copy field copied to another field – Apache

I have the follows configuration: ... <field name="spellcheck" type="text_spell" indexed="true" stored="true" multiValued="true" /> <field name="spellcheck_de" type="text_spell_de" indexed="true" stored="true" multiValued="true" /> <field name="spellcheck_en" type="text_spell_en" indexed="true" stored="true" multiValued="true" /> <field name="spellcheck_fr" type="text_spell_fr" indexed="true" stored="true" multiValued="true" /> <field name="spellcheck_ja" type="text_spell" indexed="true" stored="true" multiValued="true"…

VIEW QUESTION
Back To Top
Search