Re: Query multiple collections together

2015-05-11 Thread Zheng Lin Edwin Yeo
gt; > > On Mon, May 11, 2015 at 12:59 AM, Zheng Lin Edwin Yeo < > edwinye...@gmail.com> > wrote: > > > Thank you for the query. > > > > Just to confirm, for the 'gettingstarted' in the query, does it matter > > which collection name I put? >

Re: Query multiple collections together

2015-05-11 Thread Anshum Gupta
ngstarted' in the query, does it matter > which collection name I put? > > Regards, > Edwin > On 11 May 2015 15:51, "Anshum Gupta" wrote: > > > You can query multiple collections by specifying the list of collections > > e.g.: > > > >

Re: Query multiple collections together

2015-05-11 Thread Zheng Lin Edwin Yeo
Thank you for the query. Just to confirm, for the 'gettingstarted' in the query, does it matter which collection name I put? Regards, Edwin On 11 May 2015 15:51, "Anshum Gupta" wrote: > You can query multiple collections by specifying the list of collections > e.g.

Re: Query multiple collections together

2015-05-11 Thread Anshum Gupta
You can query multiple collections by specifying the list of collections e.g.: http://hostname:port /solr/gettingstarted/select?q=test&collection=collection1,collection2,collection3 On Sun, May 10, 2015 at 11:49 PM, Zheng Lin Edwin Yeo wrote: > Hi, > > Would like to check, is t

Query multiple collections together

2015-05-10 Thread Zheng Lin Edwin Yeo
Hi, Would like to check, is there a way to query multiple collections together in a single query and return the results in one result set? For example, I have 2 collections and I want to search for records with the word 'solr' in both of the collections. Is there a query to do that,

Re: How to query multiple words correctly

2013-07-13 Thread Stavros Delisavas
Thank you, problem solved! On 13.07.2013 12:16, Otis Gospodnetic wrote: Hi, Does the same happen if you use +*foo* +*bar* syntax? If such queries turn out to be too slow, consider indexing ngrams. Otis -- Solr & ElasticSearch Support -- http://sematext.com/ Performance Monitoring -- http://s

Re: How to query multiple words correctly

2013-07-13 Thread Otis Gospodnetic
Hi, Does the same happen if you use +*foo* +*bar* syntax? If such queries turn out to be too slow, consider indexing ngrams. Otis -- Solr & ElasticSearch Support -- http://sematext.com/ Performance Monitoring -- http://sematext.com/spm On Sat, Jul 13, 2013 at 5:40 AM, Stavros Delisavas wrote

How to query multiple words correctly

2013-07-13 Thread Stavros Delisavas
Hello Solr-Community, I am having some strange behavior that I don't understand. I hope you can help. I try to query/search for two words. For example "(*foo* AND *bar*) What I want is to get all entries that contain the string foo AND contain the word bar. What I get is all entries that contai

Is it possible or wise to query multiple cores in parallel in SolrCloud

2012-07-26 Thread Daniel Brügge
Hi, I am playing around with a SolrCloud setup (4 shards) and thousands of cores. I am thinking of executing queries on hundreds of cores like a distributed query. Is this possible at all from SolrCloud side. And is this wise? Thanks & regards Daniel

Re: Solr Query Multiple words

2012-01-16 Thread Erick Erickson
ne suggest something which can provide the response in 1-2 seconds. > > > Regards, > Vibhor > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Solr-Query-Multiple-words-tp3656968p3656968.html > Sent from the Solr - User mailing list archive at Nabble.com.

Re: Query multiple cores

2010-12-29 Thread Tomás Fernández Löbbe
You could use the different cores as "shards", the "Distributed Search" stuff would work, even if it isn't really distributed on different machines. The question is, do you really need this? Do you have the same schema on both cores? "Distributed search" is not exactly the same as "Solr Cloud", th

Re: Query multiple cores

2010-12-29 Thread Mark
I own the book already Smiley :) I'm somewhat familiar with this feature but I wouldn't be searching across multiple machines. I would like to search across two separate cores on the same machine. Is distributed search the same as Solr cloud? When would one choose one over the other? On 12

Re: Query multiple cores

2010-12-29 Thread Smiley, David W.
I recommend looking for answers on the wiki (or my book) before asking basic questions on the list. Here you go: http://wiki.apache.org/solr/DistributedSearch ~ David Smiley Author: http://www.packtpub.com/solr-1-4-enterprise-search-server/ On Dec 29, 2010, at 3:24 PM, Mark wrote: > Is it poss

Query multiple cores

2010-12-29 Thread Mark
Is it possible to query across multiple cores and combine the results? If not available out-of-the-box could this be accomplished using some sort of custom request handler? Thanks for any suggestions.

Re: How to query multiple fields with phrases

2010-02-16 Thread Chris Hostetter
: I need to do a search that will search 3 different fields and combine : the results. First, it needs to not break the phrase into tokens, but : rather treat it is a phrase for one field. The other fields need to be : parsed with their normal analyzers. your description of your goal is a littl

How to query multiple fields with phrases

2010-02-05 Thread Jason Chaffee
I am migrating from lucene to solr and I am not quite sure how do what I need to. I need to do a search that will search 3 different fields and combine the results. First, it needs to not break the phrase into tokens, but rather treat it is a phrase for one field. The other fields need to be

Re: Query multiple fields using configured analyzer stack

2009-03-16 Thread Walter Underwood
Wow, I was thinking of writing this. I made some comments on a full-text query parser last week, I think. Is there an easy way to generate the query tree then have it rewritten with the DisMax field mapping? wunder On 3/16/09 8:22 AM, "Steven A Rowe" wrote: > Another way (that I've never used)

Re: Query multiple fields using configured analyzer stack

2009-03-16 Thread Tobias Dittrich
; ignoreCase="true" /> language="German" /> stored="true" /> Is there anything else I have to configure? Thanks Tobi Steven A Rowe schrieb: Hi Tobi, On 3/16/2009 at 9:14 AM, Tobias Dittrich wrote: how can I query multiple fields in

RE: Query multiple fields using configured analyzer stack

2009-03-16 Thread Steven A Rowe
Hi Tobi, On 3/16/2009 at 9:14 AM, Tobias Dittrich wrote: > how can I query multiple fields in such way that for each of > the fields the configured analyzer stack with Tokenizer is > used for the whole query string? Lucene's QueryParser (and AFAIK, Solr's QPs too) fir

Query multiple fields using configured analyzer stack

2009-03-16 Thread Tobias Dittrich
Hi, how can I query multiple fields in such way that for each of the fields the configured analyzer stack with Tokenizer is used for the whole query string? I have several fields in my schema that use ShingleFilter and/or WordDelimiterFilter and other stuff. But when I search for example

Query - multiple

2008-01-07 Thread Jae Joo
If the number of results > 2500 then sort by company_name otherwise, sort by revenue; Do I have to access 2 times? One is to get the number of results and the other one is for sort. The second query should be accessed by necessary. Any efficient way? Thanks, Jae

RE: Query multiple fields

2007-11-18 Thread Dave C .
okay thanks for the details - David > Date: Sun, 18 Nov 2007 22:14:23 -0500 > From: [EMAIL PROTECTED] > To: solr-user@lucene.apache.org > Subject: Re: Query multiple fields > > On Nov 18, 2007 9:58 PM, Dave C. <[EMAIL PROTECTED]> wrote: > > According to the

Re: Query multiple fields

2007-11-18 Thread Yonik Seeley
On Nov 18, 2007 9:58 PM, Dave C. <[EMAIL PROTECTED]> wrote: > According to the Lucene query syntax: > "The symbol && can be used in place of the word AND." So, I shouldn't have > to use 'AND'. Yes, but before the query parser can even get the query string, the servlet container parses query arg

RE: Query multiple fields

2007-11-18 Thread Dave C .
. Is my thinking incorrect? Thanks, - David > Date: Sun, 18 Nov 2007 12:46:00 -0500 > Subject: RE: Query multiple fields > From: [EMAIL PROTECTED] > To: solr-user@lucene.apache.org > > > q=description:(test)&&!(type:10)&&!(type:14) > > You can&#x

RE: Query multiple fields

2007-11-18 Thread Stu Hood
q=description:test AND -type:10 AND -type:14 See the Lucene query syntax here: http://lucene.apache.org/java/docs/queryparsersyntax.html#Boolean%20operators Thanks, Stu -Original Message- From: "Dave C." <[EMAIL PROTECTED]> Sent: Sunday, November 18, 2007 1:50am To: solr-u

Re: Query multiple fields

2007-11-18 Thread Stuart Sierra
On Nov 18, 2007 1:50 AM, Dave C. <[EMAIL PROTECTED]> wrote: > Maybe you can help me with this related problem I am having. > My query is: q=description:(test)&&!(type:10)&&!(type:14). > > However, my results are not as expected (55 results instead of the expected > 23) > > The response header show

RE: Query multiple fields

2007-11-17 Thread Dave C .
l":"*"}}, I am confused about why the "&&!(type:10)&&!(type:14)" is not in the 'q' parameter. Any ideas? Thanks, David > From: [EMAIL PROTECTED] > To: solr-user@lucene.apache.org > Subject: RE: Query multiple fields > Dat

RE: Query multiple fields

2007-11-17 Thread Dave C .
oh, awesome thanks -david > Date: Sun, 18 Nov 2007 15:24:00 +1300 > From: [EMAIL PROTECTED] > To: solr-user@lucene.apache.org > Subject: Re: Query multiple fields > > Hi David > You had it write in your example :) > > description:test AND type:10 > > But

Re: Query multiple fields

2007-11-17 Thread Nick Jenkin
On 11/18/07, Dave C. <[EMAIL PROTECTED]> wrote: > Hello, > > I've been trying to figure out how to query multiple fields at a time. > For example, I want to do something like: description:test AND type:10. > I've tried things like: "?q=description:test&ty

Query multiple fields

2007-11-17 Thread Dave C .
Hello, I've been trying to figure out how to query multiple fields at a time. For example, I want to do something like: description:test AND type:10. I've tried things like: "?q=description:test&type:10" etc, but I keep getting syntax errors. Can anyone tell me how t

Re: delete by query multiple Ids

2007-06-26 Thread Erik Hatcher
On Jun 26, 2007, at 6:46 AM, michael ravits wrote: hello solrs is it possible to query multiple specific ids? something like this: mediaId:6720,6721,6722,8762,9754 sure, but you need to use proper query parser syntax: mediaId:(6720 OR 6721 OR )

delete by query multiple Ids

2007-06-26 Thread michael ravits
hello solrs is it possible to query multiple specific ids? something like this: mediaId:6720,6721,6722,8762,9754 - Get the Yahoo! toolbar and be alerted to new email wherever you're surfing.