Re: Newbie to SOLR with ridiculously simple questions

2013-12-10 Thread smetzger
Alex, Yeah im getting too complicated... I have a VMWARE instance with SOLR running I have an Amazon instance with SOLR running I have a Rails Installer with SOLR and Blacklight running on windows (localhost:8983) I have a Binami Windows SOLR installed (localhost:8984) i just downloaded the windo

Re: Newbie to SOLR with ridiculously simple questions

2013-12-09 Thread Alexandre Rafalovitch
I think you might be complicating your life with BitNami stack during learning. I would just download latest Solr to your Windows desktop and go through the examples there. Still, you can try moving collection1 directory under 'solr' and putting my examples there instead. Then, you don't need to c

Re: Newbie to SOLR with ridiculously simple questions

2013-12-09 Thread smetzger
Thanks for the reply Alex... in fact I am using your book! the book seems like a good tutorial ... My bitnami solr instance however already includes Solr (running in background) and a directory structure : root --opt bitnami --apache-solr solr --collection1 I assume tha

Re: Newbie to SOLR with ridiculously simple questions

2013-12-09 Thread Alexandre Rafalovitch
Hi Steve, Good luck. I would start from doing online tutorial if you haven't already (do it on Windows) and then reading a book. There are several on the market, including my own for the beginners ( http://blog.outerthoughts.com/2013/06/my-book-on-solr-is-now-published/ ). For SharePoint, I would

Re: Newbie to Solr

2013-10-28 Thread michael.boom
I don't see the mentioned attachement. Try using http://snag.gy/ to provide it. As for where do you find it, the default is http://localhost:8983/solr/collection1/query - Thanks, Michael -- View this message in context: http://lucene.472066.n3.nabble.com/Newbie-to-Solr-tp4092876p4098041.ht

Re: Newbie to Solr

2013-10-28 Thread Mamta Alshi
how do I get the solr admin web user interface? On Mon, Oct 28, 2013 at 2:32 PM, Mamta Alshi wrote: > Hi Michael, > > Thanks for the prompt response. Have a look at my attached admin user > interfaces. > > I do not quite see the options you mention. > > > On Mon, Oct 28, 2013 at 2:18 PM, michae

Re: Newbie to Solr

2013-10-28 Thread Mamta Alshi
Hi Michael, Thanks for the prompt response. Have a look at my attached admin user interfaces. I do not quite see the options you mention. On Mon, Oct 28, 2013 at 2:18 PM, michael.boom wrote: > Put "*:*" in the q field > Then check the facet check box (look lower close to the Execute button) a

Re: Newbie to Solr

2013-10-28 Thread michael.boom
Put "*:*" in the q field Then check the facet check box (look lower close to the Execute button) and in the facet.field insert "Name". This should do the trick. - Thanks, Michael -- View this message in context: http://lucene.472066.n3.nabble.com/Newbie-to-Solr-tp4092876p4098031.html Sent f

Re: Newbie to Solr

2013-10-28 Thread Mamta Alshi
Hi Alex, I have been able to run a few simple queries with my own schema.xml and data file. My concern now is that i'm able to run queries like http://localhost:8983/solr/select/?q=*:* http://localhost:8983/solr/select/?q=*:*&facet=true&facet.field=Name from the url However, when I try to run

Re: Newbie to Solr

2013-10-27 Thread Mamta Alshi
Hi Alex, That is what I am suspecting too. Trying to remove the other files from the exampledocs directory is not helping. After removing all files except the details.xml also the results still show me data from the other files but not my file. I am making changes to the same path which is displa

Re: Newbie to Solr

2013-10-27 Thread Alexandre Rafalovitch
Maybe your Solr instance is somehow using a different collection directory? In Web Admin's dashboard section, it shows the path to where it thinks the instance is. Does it match to what you expected? If it does, try deleting the core directory, restarting Solr and doing indexing again. Maybe you

Re: Newbie to Solr

2013-10-27 Thread Mamta Alshi
Hi, On trying to create a new schema.xml it shows the schema from the solr console. I have created a new data file called details.xml and placed it in the folder exampledocs. I have indexed just this one file from the command prompt. However,on my solr console in my query string when I query *:*

Re: Newbie to Solr

2013-10-03 Thread Mamta Alshi
>>> Regards, >>> >>> Kishan Parmar >>> Software Developer >>> +91 95 100 77394 >>> Jay Shree Krishnaa !! >>> >>> >>> >>> On Tue, Oct 1, 2013 at 4:19 AM, Mamta S Kanade >>> wrote: >>> >>>&g

Re: Newbie to Solr

2013-10-01 Thread Alexandre Rafalovitch
Also, where these should be placed. There's already a schema.xml > > > > > > Thanks for the prompt response. > > > > > > Mamta. > > > > > > -Original Message- > > > From: Kishan Parmar [mailto:kishan@gmail.com]

Re: Newbie to Solr

2013-10-01 Thread Mamta Alshi
the prompt response. > > > > Mamta. > > > > -Original Message----- > > From: Kishan Parmar [mailto:kishan@gmail.com] > > Sent: 01 October, 2013 03:16 PM > > To: solr-user@lucene.apache.org > > Subject: Re: Newbie to Solr > > > &g

Re: Newbie to Solr

2013-10-01 Thread Kishan Parmar
> From: Kishan Parmar [mailto:kishan@gmail.com] > Sent: 01 October, 2013 03:16 PM > To: solr-user@lucene.apache.org > Subject: Re: Newbie to Solr > > yes you have to create your own schema > but in schema file you have to add your xml files field name in it like &g

RE: Newbie to Solr

2013-10-01 Thread Mamta S Kanade
ishan@gmail.com] Sent: 01 October, 2013 03:16 PM To: solr-user@lucene.apache.org Subject: Re: Newbie to Solr yes you have to create your own schema but in schema file you have to add your xml files field name in it like wise you can add your field name in it or you can add your filed i

Re: Newbie to Solr

2013-10-01 Thread Kishan Parmar
yes you have to create your own schema but in schema file you have to add your xml files field name in it like wise you can add your field name in it or you can add your filed in the default schema file whiithout schema you can not add your xml file to solr my schema is like this -

Re: Newbie to Solr, LIKE:foo

2010-10-31 Thread Erick Erickson
Not really. The problem here is that to perform this raw, you'd need to enumerate every term in the index, which is pretty slow. One solution is to use one of the ngram tokenizers, probably the NGramFilterFactory to process the output of your tokenizers. Here's a related place to start... http://w