Is there a size or term limit for a Solr query string when using HTTP POST?
I'm using Java to query a Solr server for results that have IDs within a set of known IDs that I am interested in. The best way I could think to get just these results that I am interested in was to create a long query string that looks something like this: q=(item_id:XXX33-3333 OR item_id:YYY42-3445 OR item_id:JFDE-3838) I generate this String, queryString , before making my request, and there are over 1500 such ids included in the request I would eventually like to make. I am using an HTTP POST to make the query as such: HttpPost post = new HttpPost(url); post.setHeader("Content-Type",