Hi all, I have a question regarding the functionality of Edismax parser and its "User Field" feature. We are running Solr 4.4 on our server.
For the query: "q= id:b* user:"Anna Collins"&defType=edismax&uf=* -user&rows=0" The parsed query (taken from query debug info) is: +((id:b* (text:user) (text:"anna collins"))~1) I expect that because "user" was filter out in "uf" (User fields), the parsed query should not contain the "user" search part. In another words, the parsed query should look simply like this: +id:b* What is the right behavior? Thanks, Liram