Last active
August 29, 2015 14:05
-
-
Save sebnmuller/05a2a1dd01a6c5a4517b to your computer and use it in GitHub Desktop.
Useful Solr HTTP requests
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Clear index: http://localhost:8983/solr/update?stream.body=<delete><query>*:*</query></delete>&commit=true | |
Retrieve all: http://localhost:8983/solr/select?q=*:*&omitHeader=true | |
Index db: http://localhost:8983/solr/collection1/dataimport?command=full-import | |
Reload core: http://localhost:8983/solr/admin/cores?action=RELOAD&core=collection1 | |
Georgi query: http://localhost:8983/solr/select?q=georgi&wt=json&qf=first_name%20last_name&defType=edismax |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Clear index: http://localhost:8983/solr/employees/update?stream.body=<delete><query>*:*</query></delete>&commit=true | |
Retrieve all: http://localhost:8983/solr/employees/select?q=*:*&omitHeader=true | |
Index db: http://localhost:8983/solr/employees/collection1/dataimport?command=full-import | |
Reload core: http://localhost:8983/solr/employees/admin/cores?action=RELOAD&core=collection1 | |
Georgi query: http://localhost:8983/solr/employees/select?q=georgi&wt=json&qf=first_name%20last_name&defType=edismax | |
Facet query: http://localhost:8983/solr/employees/select?q=*:*&wt=json&facet=true&facet.field=dept_s&facet.field=title_s&facet.mincount=1&rows=0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment