Re: why cant i send to solr using jquery post/get function?

2009-12-14 Thread khalid y
In your place, I prefer to set the return format type in jquery like this example : $.post("test.php", { func: "getNameAndTime" }, function(data){ alert(data.name); // John console.log(data.time); // 2pm }, "json"); and in the server side with wt parameter wt=json So $.post("http:

Re: why cant i send to solr using jquery post/get function?

2009-12-14 Thread khalid y
Are you tried with params wt="json" ? 2009/12/14 Faire Mii > when i enter http://localhost:8983/solr/select/?q=body:hello in the URL > field i get all the results. > > but when i'm using jquery code: > > $.post('http://localhost:8983/solr/select/?q=body:hello, function(data){ >alert(data

Re: see index?

2009-12-14 Thread khalid y
You can go to admin page of solr : example : http://localhost:8080/solr/mycore or http://localhost:8080/solr or your url to solr :-) There you click on "schema browser" on the first line containing links. In the next view, click on field in the left panel and choose the field you want to inspect.

Re: auto-starting Solr on OS X ?

2009-12-12 Thread khalid y
Best way for you is LAUNCHD system. You can found a good documentation and some example. http://developer.apple.com/macosx/launchd.html 2009/12/12 Erick Erickson > See http://www.macosxhints.com/article.php?story=20041105070509783 > > In general, crontab is what you want, probably with the @

Re: Solr Search in stemmed and non stemmed mode

2009-12-07 Thread khalid y
tion is to use two fields, one for the stemmed version > and one for the original, then use whichever field you need to via > DixMax handler (more detail in the mail archive). > > Best > Erick > > On Mon, Dec 7, 2009 at 10:02 AM, khalid y wrote: > > > Hi !! > > &

Solr Search in stemmed and non stemmed mode

2009-12-07 Thread khalid y
Hi !! I'm looking for a way to have two index in solr one stemmed and another non stemmed. Why ? It's simple :-) My users can do query for : - banking marketing => it return all document matches bank*** and market*** - "banking" marketing => it return all document matches "banking" and market*

Re: WELCOME to solr-user@lucene.apache.org

2009-12-05 Thread khalid y
Factory > . > > > > - Raghu > > > > On Sat, Dec 5, 2009 at 3:44 AM, khalid y wrote: > > > Hi, > > > > I have a problem with solr. I'm indexing some html content and solr crash > > because my id field is multivalued. > > I found that

Re: WELCOME to solr-user@lucene.apache.org

2009-12-04 Thread khalid y
Hi, I have a problem with solr. I'm indexing some html content and solr crash because my id field is multivalued. I found that Tika read the html and extract metadata like from my htmls but my documents has an already an id setted by literal.id=10. I tried to map the id from Tika by fmap.id=igno