Hi, I've indexed a lot of documents (*.docx & *.vsd). When I run a query from the website it returns only a small proportion of the data in the index: { "responseHeader":{ "status":0, "QTime":66, "params":{ "q":"NS Finance 9.2", "fl":"id,date", "start":"0", "_":"1508193512223"}}, "response":{"numFound":2053,"start":0,"docs":[ ..here it returns only 9 documents of type *.doc ]
I know the search text occurs in some of the *.vsd files so I re-run: { "responseHeader":{ "status":0, "QTime":754, "params":{ "q":"\"NS Finance 9.2\" id:*FIN*.vsd", "fl":"id,date", "_":"1508193512223"}}, "response":{"numFound":9,"start":0,"docs":[ ..here it returns only 9 documents of *.vsd ] Is this expected behavior where it returns only a subset of the documents it has found? I want all the documents that contain the query string. How do I tell Solr to return ALL documents containing the string?