> Looking at the Solr tutorial I see
> queries like:
> 
> q=video&fl=name,id (return only name and id fields)
> 
> Does that query all fields for the word video?  

No query is executed on default search field. If you add &debugQuery=on to your 
URL you can see which field is queried.

> Is there something specific setup in the solr tutorial that
> allows you
> to query across all fields?

With http://wiki.apache.org/solr/ExtendedDisMax you can do that. You just need 
to supply names of fields that you want to search.

defType=edismax&qf=description,title,name,etc.

Reply via email to