Search Results: 'solr'

…(q) {\n $scope.q = q;\n\n //here we issue the actual query using jQuery\n $.ajax({\n url: “http://ec2-75-101-214-153.compute-1.amazonaws.com:8983/solr/statedecoded/search”,\n data: {\n “q”: $scope.q,\n “wt”: “json”,\n “rows”:3\n },\n traditional: true,\n cache: true,\n async: true,\n…

…click Create a Case Walk through the steps in the Wizard, here we’ll just use the default Virginia State Laws (“statedecoded”) data set. The Solr URL you want is http://quepid-solr.dev.o19s.com/solr/statedecoded/select….

…for “green shoes”, you want to display green shoes, but you also want to promote the newest product first. So you set up your Solr request handler like so: http://www.zappos.com/solr/select?green…

…what you see at https://lucene.apache.org/solr/guide/8_4/taking-solr-to-production.html#taking-solr-to-production, then expect similar functionality for Tika. I will endeavor to keep this post updated over time as deployment approaches evolve, but don’t hesitate to ping…

…and Paul M. Bartusch. Chorus offers an open source tool stack for e-commerce search based on Solr. Of course, Solr is not the only search engine used for e-commerce search…

…and Tesseract outside of Solr Using Tika and Tesseract as an API exposed by Solr Tesseract 3 and Tika Parsing Tika & Tesseract formatted HOCR output inside Solr ingestion pipeline…

…the updates or maybe even (sigh) break out the Java code and use the SolrJ interface. In the meantime, it works and Im really glad Solr finally got this feature!…

…= new SolrQuery(“*:*”);query.setRows(1);QueryRequest req = new QueryRequest(query);NoOpResponseParser dontMessWithSolr = new NoOpResponseParser();dontMessWithSolr.setWriterType(“json”);server.setParser(dontMessWithSolr);NamedList resp = server.request(req);String jsonResponse = (String) resp.get(“response”);System.out.println(jsonResponse);Assert.assertTrue(“Verify that we get back some JSON”,jsonResponse.startsWith(“{“responseHeader””)); NoOpResponseParser returns the full JSON output…