0

I want to restrict the returned results to be only the documents that were created by the user.
I then load to the index the createdBy attribute and set it to index false,stored="true"

<field name="CreatedBy" type="string" indexed="false" stored="true" required="true"/>

then in the I want to filter by "CreatedBy" so I use the dashboard, check edismax and add I check edismax and add CreatedBy:user1 to the qf field.

the result query is

http://....:8983/solr/vault/select?q=*%3A*&defType=edismax&qf=CreatedBy%3Auser1

Nothing is filtered. all rows returned.
What was I doing wrong?

4

1 回答 1

1

尝试:

fq=CreatedBy:user1

qf代表查询字段,而fq代表过滤查询

于 2013-07-23T13:44:42.457 回答