2

I need to configure my solr engine is such way that I can elevate and skip some documents always, so I was referring to this document, however not sure whether this is supported or not. e.g. Can we specify the "text" attribute of element like following sample elevate.xml?

<elevate>

   <query text="*:*">
     <doc id="A" />
     <doc id="B" />
   </query>

   <query text="partialQueryText*">
     <doc id="A" />
     <doc id="B" exclude="true" />
   </query>

</elevate>

Any idea?

sehe
  • 374,641
  • 47
  • 450
  • 633
D.S
  • 1,110
  • 3
  • 11
  • 26

1 Answers1

-2

No, you cannot do that, you can only use a fixed query like foo bar

Ray Niu
  • 1
  • 2