Re: [POLL] Where do you get Lucene/Solr from? Maven? ASF Mirrors?

2011-01-19 Thread Paige Cook
>
>
> [X] ASF Mirrors (linked in our release announcements or via the Lucene
> website)
>
> [] Maven repository (whether you use Maven, Ant+Ivy, Buildr, etc.)
>
> [X] I/we build them from source via an SVN/Git checkout.
>
>


Re: Issue with facet fields

2010-11-11 Thread Paige Cook
Are you storing the upload_by and business fields? You will not be able to
retrieve a field from your index if it is not stored. Check that you have
stored="true" for both of those fields.

- Paige

On Thu, Nov 11, 2010 at 10:23 AM, gauravshetti wrote:

>
> I am facing this weird issue in facet fields
>
> Within config xml
> under
> 
> 
> −
> 
>
> I have defined the fl as
> 
>
>file_id folder_id display_name file_name priority_text content_type
> last_upload upload_by business indexed
>
> 
>
> But my out xml doesnt contain the element upload_by and business
> But i am able to do seach by upload_by: and business:
>
> Even when i add in the url &fl=* i do not get this facet field in the
> response
>
> Any idea what i am doing wrong.
>
>
> --
> View this message in context:
> http://lucene.472066.n3.nabble.com/Issue-with-facet-fields-tp1883106p1883106.html
> Sent from the Solr - User mailing list archive at Nabble.com.
>


Custom Request Handler

2010-11-10 Thread Paige Cook
I was reading the in Solr Wiki about creating request handlers -
http://wiki.apache.org/solr/SolrRequestHandler and saw that there are two
different ways to create a handler:

1. Define as   and call via
http://localhost:8983/baz/?..
2. Define as   and call via
http://localhost:8983/select/?qt=baz...

So I was wondering one way is preferred over the other?

Thanks,
Paige Cook