Re: Query using doc Id

2014-07-23 Thread Mukundaraman Valakumaresan
com/ and @arafalov > Solr resources: http://www.solr-start.com/ and @solrstart > Solr popularizers community: https://www.linkedin.com/groups?gid=6713853 > > > On Wed, Jul 23, 2014 at 4:59 PM, Mukundaraman Valakumaresan > wrote: > > @Alexandre > > No, I mean the same w

Re: Query using doc Id

2014-07-23 Thread Mukundaraman Valakumaresan
rstart > Solr popularizers community: https://www.linkedin.com/groups?gid=6713853 > > > On Wed, Jul 23, 2014 at 11:49 AM, Mukundaraman Valakumaresan > wrote: > > Hi, > > > > Is it possible to execute queries using doc Id as a query parameter > > > > For eg,

Query using doc Id

2014-07-22 Thread Mukundaraman Valakumaresan
Hi, Is it possible to execute queries using doc Id as a query parameter For eg, query docs whose doc Id is between 100 and 200 Thanks & Regards Mukund

Solr Suggester vs Solr SpellChecker

2014-05-27 Thread Mukundaraman valakumaresan
Hi For auto suggestions I see, that the SpellChecker Component is being used. In SolrConfig.xml, I see the following SuggestComponent. What is the difference between these 2 components? Which one should be used for Auto Suggestions. I could see the SpellChecker component working, any reference

Re: Error uploading csv/json from exampledocs folder

2014-05-27 Thread Mukundaraman valakumaresan
Personal website: http://www.outerthoughts.com/ > Current project: http://www.solr-start.com/ - Accelerating your Solr > proficiency > > > On Tue, May 27, 2014 at 2:34 PM, Mukundaraman valakumaresan > wrote: > > Hi > > > > I am using solr version 4.8. When I uploaded the

Error uploading csv/json from exampledocs folder

2014-05-27 Thread Mukundaraman valakumaresan
Hi I am using solr version 4.8. When I uploaded the csv and json provided in the example docs folder. I am getting a 400 response and the following exception Could be a bug... 7955 [searcherExecutor-5-thread-1] INFO org.apache.solr.core.SolrCore – QuerySenderListener sending requests to Search

Solr Commiter

2014-05-16 Thread Mukundaraman valakumaresan
Hi How to become a solr committer? Any suggestions? Regards Mukund

Re: Passing variables as values in Query Filter

2014-01-07 Thread Mukundaraman valakumaresan
r/Local+Parameters+in+Queries > > Ahmet > > > > > On Tuesday, January 7, 2014 3:39 PM, Mukundaraman valakumaresan < > muk...@8kmiles.com> wrote: > Hi > > The following query executes > > > http://localhost:8983/solr/collection1/select?wt=json&inden

Passing variables as values in Query Filter

2014-01-07 Thread Mukundaraman valakumaresan
Hi The following query executes http://localhost:8983/solr/collection1/select?wt=json&indent=true&q=locality:A dyar But I wanted something like the one below which is not working. http://localhost:8983/solr/collec

Reading Config files Solr

2013-12-19 Thread Mukundaraman valakumaresan
Hi Is it possible to read configuration properties inside Solr For eg.i have a property file F:\solr\example\solr\collection1\conf\test.properties within which I have lots of key, value entries. Is there a way to read this file using a relative path and use it inside a custom function Thanks &

Re: External File Field

2013-12-17 Thread Mukundaraman valakumaresan
gt; > With above configuration everything should work. Verify it by > q=*:*&fl=*,field(adjlocality) > > > > > > On Tuesday, December 17, 2013 9:02 AM, Mukundaraman valakumaresan < > muk...@8kmiles.com> wrote: > Hi > > > http://localhost:8983/

Re: External File Field

2013-12-16 Thread Mukundaraman valakumaresan
i.apache.org/confluence/display/solr/Working+with+External+Files+and+Processes > > Actually you can search it too with frange query parser. {!frange l=0 > u=0}field(adjlocality) > > > > > On Monday, December 16, 2013 5:05 PM, Mukundaraman valakumaresan < > muk...@8kmi

External File Field

2013-12-16 Thread Mukundaraman valakumaresan
Hi Is there a way to find ,whether the External File Fields mentioned in the schema.xml is being used or whether Solr reads the value of those external fields. I am not sure how to use an External field, can I request the value of an External File Field in the field list or can I use in my custom

Re: custom group sort in solr

2013-12-12 Thread Mukundaraman valakumaresan
Hi You may try to write a custom function and sort your group according to the result of the custom function. If that might work, check out ValueSourceParser, ValueSource and its descendant classes for a better understanding. Thanks & Regards Mukund On Fri, Dec 13, 2013 at 10:54 AM, Parvesh Ga

Re: Getting Solr Document Attributes from a Custom Function

2013-12-12 Thread Mukundaraman valakumaresan
mberOfCities" don't look like multivalued. At least you can try to > use, you know, some tricky format like > "50;40;20" to index multivalued field as single-valued and then parse this > into values list in function. > > 11.12.2013, 11:13, "Mukundaraman valakumares

Re: Getting Solr Document Attributes from a Custom Function

2013-12-10 Thread Mukundaraman valakumaresan
alue for this particular fields, another > three will be ConstValueSource instances - just constants, so we can access > all 5 values and implement custom formula per doc id. Find examples in > ValueSourceParser and solr functions like DefFunction or MinFloatFunction > > 10.12.2013, 09:3

Re: Getting Solr Document Attributes from a Custom Function

2013-12-09 Thread Mukundaraman valakumaresan
nd you are asking about "Y" > without giving more details about the "X" so that we can understand the > full issue. Perhaps the best solution doesn't involve "Y" at all? > See Also: http://www.perlmonks.org/index.pl?node_id=542341 > > > >

Getting Solr Document Attributes from a Custom Function

2013-12-09 Thread Mukundaraman valakumaresan
Hi All, I have a written a custom solr function and I would like to read a property of the document inside my custom function. Is it possible to get that using Solr? For eg. inside the floatVal method, I would like to get the value of the attribute "name" public class CustomValueSource extends V