Re: how to use ajax-solr - example?
It seems the OP has found what he wanted, but just to clarify and update: The AJAX Solr documentation has been massively expanded, and a demo site has been created: Demo: http://evolvingweb.github.com/ajax-solr/examples/reuters/index.html Docs: http://evolvingweb.github.com/ajax-solr/ AJAX Solr is JavaScript framework-agnostic. If you prefer Prototype, use Prototype. The documentation, however, is written in jQuery, as it is the most popular framework. Counter what Israel said, sending data only between JavaScript and Solr will *not* limit you to one domain. In the demo site, for example, the HTML/JS is on one domain and Solr is on another domain. Cheers, James Israel Ekpo wrote: > > On Wed, Nov 4, 2009 at 10:48 AM, Joel Nylund wrote: > >> Hi, I looked at the documentation and I have no idea how to get started? >> Can someone point me to or show me an example of how to send a query to a >> solr server and paginate through the results using ajax-solr. >> >> I would glady write a blog tutorial on how to do this if someone can get >> me >> started. >> >> I dont know jquery but have used prototype & scriptaculous. >> >> thanks >> Joel >> >> > > Joel, > > It will be best if you use a scripting language between Solr and > JavaScript > > This is becasue sending data only between JavaScript and Solr will limit > you > to only one domain name. > > However, if you are using a scripting language between JavaScript and Solr > you can use the scripting language to retrieve the request parameters from > JavaScript and then same them to Solr with the response writer set to > json. > > This will cause Solr to send the response in JSON format which the > scripting > language can pass on to JavaScript. > > This example here will cause Solr to return the response in JSON. > > http://example.com:8443/solr/select?q=searchkeyword&wt=json > > > -- > "Good Enough" is not good enough. > To give anything less than your best is to sacrifice the gift. > Quality First. Measure Twice. Cut Once. > > -- View this message in context: http://old.nabble.com/how-to-use-ajax-solr---example--tp26198805p26763868.html Sent from the Solr - User mailing list archive at Nabble.com.
Re: solrjs
The documentation has been massively expanded, and a demo site has been created: Demo: http://evolvingweb.github.com/ajax-solr/examples/reuters/index.html Docs: http://evolvingweb.github.com/ajax-solr/ Although it took a while, the documentation is more thorough than SolrJS's had been. James AE-4 wrote: > > I fully understand it was not working probably in production or on other > data sets. But it did serve a purpose for me.. i.e. show a demo to anyone > out of my box.. and I update my local repo with trunk all the time.. > > I could do ant reuters-start using my laptop and it would work.. my point > is remove it when you have something to replace it with.. active > development won't help my demo to customers.. and will not promote solr to > larger audience.. > > well whats done is done. i will revert to older repo revision. > > thanks > > --- Den ons 2009-10-28 skrev Colin Hynes : > >> Från: Colin Hynes >> Ämne: Re: solrjs >> Till: solr-user@lucene.apache.org >> Datum: onsdag 28 oktober 2009 15.18 >> >> Actually, it wasn't quite working. It also replicated a lot >> of stuff that's in ajax solr, which is being more actively >> developed. Hence the removal. >> >> >> On Oct 28, 2009, at 10:16 AM, Antonio Eggberg wrote: >> >> > I am all for new stuff. >> > >> > It would be nice to see a working example of ajax-solr >> before killing completely solrjs from trunk... at least it >> was working .. ajax-solr has no how to, nor any working >> example.. >> > >> > http://github.com/evolvingweb/ajax-solr >> > >> > Well why not just remove the javascript folder too and >> just have one liner mention in CHANGES.txt??... >> > >> > >> > >> > >> > >> > >> > >> > >> __ >> > Låna pengar utan säkerhet. Jämför vilkor online >> hos Kelkoo. >> > >> http://www.kelkoo.se/c-100390123-lan-utan-sakerhet.html?partnerId=96915014 >> > >> >> Active Media Architects, Inc. >> World Class Design, Programming & Strategy - Since >> 1998 >> http://www.activema.com >> >> 1-888-392-4567 toll free >> 1-586-445-1000 local >> 1-586-445-2247 fax >> >> > > > ___ > Sök efter kärleken! > Hitta din tvillingsjäl på Yahoo! Dejting: > http://ad.doubleclick.net/clk;185753627;24584539;x?http://se.meetic.yahoo.net/index.php?mtcmk=148783 > > -- View this message in context: http://old.nabble.com/ERROR%3ASCHEMA-INDEX-MISMATCH-tp26091970p26763917.html Sent from the Solr - User mailing list archive at Nabble.com.
Re: Getting solr response data in a JS query
AJAX Solr does more or less the following: jQuery.getJSON('http://localhost:8983/solr/select/?q=*:*&wt=json&json.wrf=?', {}, function (data) { // do something with data, which is the eval'd JSON response }); -- View this message in context: http://old.nabble.com/Getting-solr-response-data-in-a-JS-query-tp27095224p27116970.html Sent from the Solr - User mailing list archive at Nabble.com.