Re: Which query parser and how to do full text on mulitple fields

2010-12-12 Thread Markus Jelsma
The manual answers most questions.

> Oh, I didn't know that the syntax didn't show the parser used, that it was
> set in the config file.
> 
> I'll talk to my partner, thanks.
> 
>  Dennis Gearon
> 
> 
> Signature Warning
> 
> It is always a good idea to learn from your own mistakes. It is usually a
> better idea to learn from others’ mistakes, so you do not have to make
> them yourself. from
> 'http://blogs.techrepublic.com.com/security/?p=4501&tag=nl.e036'
> 
> 
> EARTH has a Right To Life,
> otherwise we all die.
> 
> 
> 
> - Original Message 
> From: Markus Jelsma 
> To: solr-user@lucene.apache.org
> Cc: Pradeep Singh 
> Sent: Sun, December 12, 2010 5:08:11 PM
> Subject: Re: Which query parser and how to do full text on mulitple fields
> 
> Pradeep is right, but, check the solrconfig, the query parser is defined
> there. Look for the basedOn attribute in the queryParser element.
> 
> > You said you were using a third party plugin. What do you expect people
> > herre to know? Solr plugins don't have parameters lat, long, radius and
> > threadCount (they have pt and dist).
> > 
> > On Sun, Dec 12, 2010 at 4:47 PM, Dennis Gearon 
wrote:
> > > Which query parser did my partner set up below, and how to I parse
> > > three fields
> > > in the index for scoring and returning results?
> > > 
> > > 
> > > 
> > > 
> > > /solr/select?wt=json&indent=true&start=0&rows=20&q={!spatial%20lat=37.3
> > > 26
> > > 375%20long=-121.892639%20radius=3%20unit=km%20threadCount=3}title:Art%
> > > 20L oft
> > > 
> > >  Dennis Gearon
> > > 
> > > Signature Warning
> > > 
> > > It is always a good idea to learn from your own mistakes. It is usually
> > > a better
> > > idea to learn from others’ mistakes, so you do not have to make them
> > > yourself.
> > > from 'http://blogs.techrepublic.com.com/security/?p=4501&tag=nl.e036'
> > > 
> > > 
> > > EARTH has a Right To Life,
> > > otherwise we all die.


Re: Which query parser and how to do full text on mulitple fields

2010-12-12 Thread Dennis Gearon
Oh, I didn't know that the syntax didn't show the parser used, that it was set 
in the config file.

I'll talk to my partner, thanks.

 Dennis Gearon


Signature Warning

It is always a good idea to learn from your own mistakes. It is usually a 
better 
idea to learn from others’ mistakes, so you do not have to make them yourself. 
from 'http://blogs.techrepublic.com.com/security/?p=4501&tag=nl.e036'


EARTH has a Right To Life,
otherwise we all die.



- Original Message 
From: Markus Jelsma 
To: solr-user@lucene.apache.org
Cc: Pradeep Singh 
Sent: Sun, December 12, 2010 5:08:11 PM
Subject: Re: Which query parser and how to do full text on mulitple fields

Pradeep is right, but, check the solrconfig, the query parser is defined there. 
Look for the basedOn attribute in the queryParser element.



> You said you were using a third party plugin. What do you expect people
> herre to know? Solr plugins don't have parameters lat, long, radius and
> threadCount (they have pt and dist).
> 
> On Sun, Dec 12, 2010 at 4:47 PM, Dennis Gearon wrote:
> > Which query parser did my partner set up below, and how to I parse three
> > fields
> > in the index for scoring and returning results?
> > 
> > 
> > 
> > 
> > /solr/select?wt=json&indent=true&start=0&rows=20&q={!spatial%20lat=37.326
> > 375%20long=-121.892639%20radius=3%20unit=km%20threadCount=3}title:Art%20L
> > oft
> > 
> >  Dennis Gearon
> > 
> > Signature Warning
> > 
> > It is always a good idea to learn from your own mistakes. It is usually a
> > better
> > idea to learn from others’ mistakes, so you do not have to make them
> > yourself.
> > from 'http://blogs.techrepublic.com.com/security/?p=4501&tag=nl.e036'
> > 
> > 
> > EARTH has a Right To Life,
> > otherwise we all die.



Re: Which query parser and how to do full text on mulitple fields

2010-12-12 Thread Dennis Gearon
And to be more specific, the fields I want to combine for *full text* are just 
three text fields, they're not geospatial.

 Dennis Gearon


Signature Warning

It is always a good idea to learn from your own mistakes. It is usually a 
better 
idea to learn from others’ mistakes, so you do not have to make them yourself. 
from 'http://blogs.techrepublic.com.com/security/?p=4501&tag=nl.e036'


EARTH has a Right To Life,
otherwise we all die.



- Original Message 
From: Pradeep Singh 
To: solr-user@lucene.apache.org
Sent: Sun, December 12, 2010 5:02:54 PM
Subject: Re: Which query parser and how to do full text on mulitple fields

You said you were using a third party plugin. What do you expect people
herre to know? Solr plugins don't have parameters lat, long, radius and
threadCount (they have pt and dist).

On Sun, Dec 12, 2010 at 4:47 PM, Dennis Gearon wrote:

> Which query parser did my partner set up below, and how to I parse three
> fields
> in the index for scoring and returning results?
>
>
>
>
>/solr/select?wt=json&indent=true&start=0&rows=20&q={!spatial%20lat=37.326375%20long=-121.892639%20radius=3%20unit=km%20threadCount=3}title:Art%20Loft
>t
>
>
>  Dennis Gearon
>
>
> Signature Warning
> 
> It is always a good idea to learn from your own mistakes. It is usually a
> better
> idea to learn from others’ mistakes, so you do not have to make them
> yourself.
> from 'http://blogs.techrepublic.com.com/security/?p=4501&tag=nl.e036'
>
>
> EARTH has a Right To Life,
> otherwise we all die.
>
>



Re: Which query parser and how to do full text on mulitple fields

2010-12-12 Thread Dennis Gearon
Well, I didn't think the plugin would be an issue. I thought the rest of the 
query was from the main query parser, and the plugin processes after that. so I 
thought the rest of query AFTER the plugin/filter part of the query was like 
normal,without the filter/plugin. Is that so?

Using the plugin makes me do everything according to it's reequirements, or for 
just what's in the braces {}?

I believe the plugin is Spatial Solr, anyway.

I'm really new to using this, guys.

 Dennis Gearon


Signature Warning

It is always a good idea to learn from your own mistakes. It is usually a 
better 
idea to learn from others’ mistakes, so you do not have to make them yourself. 
from 'http://blogs.techrepublic.com.com/security/?p=4501&tag=nl.e036'


EARTH has a Right To Life,
otherwise we all die.



- Original Message 
From: Pradeep Singh 
To: solr-user@lucene.apache.org
Sent: Sun, December 12, 2010 5:02:54 PM
Subject: Re: Which query parser and how to do full text on mulitple fields

You said you were using a third party plugin. What do you expect people
herre to know? Solr plugins don't have parameters lat, long, radius and
threadCount (they have pt and dist).

On Sun, Dec 12, 2010 at 4:47 PM, Dennis Gearon wrote:

> Which query parser did my partner set up below, and how to I parse three
> fields
> in the index for scoring and returning results?
>
>
>
>
>/solr/select?wt=json&indent=true&start=0&rows=20&q={!spatial%20lat=37.326375%20long=-121.892639%20radius=3%20unit=km%20threadCount=3}title:Art%20Loft
>t
>
>
>  Dennis Gearon
>
>
> Signature Warning
> 
> It is always a good idea to learn from your own mistakes. It is usually a
> better
> idea to learn from others’ mistakes, so you do not have to make them
> yourself.
> from 'http://blogs.techrepublic.com.com/security/?p=4501&tag=nl.e036'
>
>
> EARTH has a Right To Life,
> otherwise we all die.
>
>



Re: Which query parser and how to do full text on mulitple fields

2010-12-12 Thread Markus Jelsma
Pradeep is right, but, check the solrconfig, the query parser is defined there. 
Look for the basedOn attribute in the queryParser element.



> You said you were using a third party plugin. What do you expect people
> herre to know? Solr plugins don't have parameters lat, long, radius and
> threadCount (they have pt and dist).
> 
> On Sun, Dec 12, 2010 at 4:47 PM, Dennis Gearon wrote:
> > Which query parser did my partner set up below, and how to I parse three
> > fields
> > in the index for scoring and returning results?
> > 
> > 
> > 
> > 
> > /solr/select?wt=json&indent=true&start=0&rows=20&q={!spatial%20lat=37.326
> > 375%20long=-121.892639%20radius=3%20unit=km%20threadCount=3}title:Art%20L
> > oft
> > 
> >  Dennis Gearon
> > 
> > Signature Warning
> > 
> > It is always a good idea to learn from your own mistakes. It is usually a
> > better
> > idea to learn from others’ mistakes, so you do not have to make them
> > yourself.
> > from 'http://blogs.techrepublic.com.com/security/?p=4501&tag=nl.e036'
> > 
> > 
> > EARTH has a Right To Life,
> > otherwise we all die.


Re: Which query parser and how to do full text on mulitple fields

2010-12-12 Thread Pradeep Singh
You said you were using a third party plugin. What do you expect people
herre to know? Solr plugins don't have parameters lat, long, radius and
threadCount (they have pt and dist).

On Sun, Dec 12, 2010 at 4:47 PM, Dennis Gearon wrote:

> Which query parser did my partner set up below, and how to I parse three
> fields
> in the index for scoring and returning results?
>
>
>
>
> /solr/select?wt=json&indent=true&start=0&rows=20&q={!spatial%20lat=37.326375%20long=-121.892639%20radius=3%20unit=km%20threadCount=3}title:Art%20Loft
>
>
>  Dennis Gearon
>
>
> Signature Warning
> 
> It is always a good idea to learn from your own mistakes. It is usually a
> better
> idea to learn from others’ mistakes, so you do not have to make them
> yourself.
> from 'http://blogs.techrepublic.com.com/security/?p=4501&tag=nl.e036'
>
>
> EARTH has a Right To Life,
> otherwise we all die.
>
>


Which query parser and how to do full text on mulitple fields

2010-12-12 Thread Dennis Gearon
Which query parser did my partner set up below, and how to I parse three fields 
in the index for scoring and returning results?



/solr/select?wt=json&indent=true&start=0&rows=20&q={!spatial%20lat=37.326375%20long=-121.892639%20radius=3%20unit=km%20threadCount=3}title:Art%20Loft


 Dennis Gearon


Signature Warning

It is always a good idea to learn from your own mistakes. It is usually a 
better 
idea to learn from others’ mistakes, so you do not have to make them yourself. 
from 'http://blogs.techrepublic.com.com/security/?p=4501&tag=nl.e036'


EARTH has a Right To Life,
otherwise we all die.