Oops... for your example it would be:
f.brand_name.qf=brand
-- Jack Krupansky
-----Original Message-----
From: Antoine LE FLOC'H
Sent: Friday, June 6, 2014 6:54 PM
To: solr-user@lucene.apache.org
Subject: Re: Mapping a field name before queryParser
OK thank you.
I wanted to see what's possible if we want to change our Solr query
interface. It is used by client applications. I wanted to see if we can be
backward compatible.
On Sat, Jun 7, 2014 at 12:10 AM, Jack Krupansky <j...@basetechnology.com>
wrote:
Edismax has field aliasing:
http://wiki.apache.org/solr/ExtendedDisMax#Field_aliasing_.2F_renaming
f.my_alias.qf=actual_field
f.brand.qf=brand_name
-- Jack Krupansky
-----Original Message----- From: Antoine LE FLOC'H Sent: Friday, June 6,
2014 5:56 PM To: solr-user@lucene.apache.org Subject: Mapping a field
name before queryParser
Hello,
I have a query like the following where "brand" is a field in my schema:
select?rows=1&start=0&sort=price+asc&q=brand:sony&qt=for-search&wt=xml
But I want to do this instead:
select?rows=1&start=0&sort=price+asc&q=brand_name:sony&
qt=for-search&wt=xml
and define something like "brand_name:brand" in my Solr config to change
the field before or during the QueryParsing. Is there a way to do that ?
Ideally I would not want to do a copyField since it would grow my index
and
would require re-indexing.
Thank you