One thing I really like about Solr is that its super easy to get started. You just download solr, fire it up, and then after following the 10 minute tutorial…
…default Solr highlighting doesn’t do a great job of showing you why. Solr’s highlighting will do: Mary had a little lambLittle sheeps had a Mary If our queries are long…
Course Overview OpenSource Connections, in partnership with LucidWorks, is pleased to present Solr Unleashed, a 2-day Solr training course right here in Charlottesville. If youre new to Solr, then this…
…complete, then execute a second request. Something like this code import requests#Search 1solrResp = requests.get(‘http://mysolr.com/solr/statedecoded/search?q=law’)for doc in solrResp.json()[‘response’][‘docs’]: print doc[‘catch_line’]#Search 2solrResp = requests.get(‘http://mysolr.com/solr/statedecoded/search?q=shoplifting’)for doc in solrResp.json()[‘response’][‘docs’]: print doc[‘catch_line’] (were using…
…much traction. Remember to remind committers to apply your fixes when they have the time! See SOLR-13965 and SOLR-11480 and SOLR-2611 and SOLR-2263. Ready to start slinging some code? …
Name Search in Solr
…to up your Solr game on these and other problems, be sure to check out our Solr Training! Share your thoughts! Hopefully this article can get you started building a…
Graph Phun in Solr
…built Solr I ran it withbin/solr -e schemaless to get a blank collection. After the indexing code finished I opened up the Admin Console and checked out the schema. Sure…
…can create a brand new Solr input document:var childDoc = new Packages.org.apache.solr.common.SolrInputDocument();and then add it to our parent document via calling the Java method on the object:doc.addChildDocument(childDoc); The process-speech.js script…
…<requestParsers enableRemoteStreaming="false" multipartUploadLimitInKB="20480" formdataUploadLimitInKB="20480" /> </requestDispatcher> You can now hit Solr via: curl ‘http://localhost:8983/solr/documents/update/extract?literal.id=doc2&commit=true&extractOnly=true’ -F "myfile=@files/alvarez20140715a.pdf" and get back from Solr the Tika processed content in a relatively easy to…
…or are considering Solr need to figure out, which is whether 4.0 is stable enough to deploy in a live environment. Solr, even in unrelated versions, has historically been pretty…
…case has different considerations. Doh! An aside, I’ve been giving hon-lucene-synonyms some love since December. I got it working on Solr 5.3.1 and Solr 6.0.0 but neglected the documentation. The…
…private String status; We save the object into Solr via an instance of SolrClient: jobTrackerSolrClient.addBean(jobTracker); We load the object back from Solr via: SolrQuery q = new SolrQuery();q.set("q","id:" + objectId);q.set("fl","*");QueryResponse…