What is the ...?
我使用/fcselect
没有排名 ID 的处理程序问了一个问题,并获得了以下文档:
"docs": [
{"id": "100"}, // ranked first
{"id": "101"}, // ranked second
...
{"id": "198"}, // ranked second from last (99th)
{"id": "199"} // ranked last (100th)
]
然后,我使用以下基本事实创建了一个排名器:
What is the ...?,199,5,198,4
...
然后,我使用带有排名器的处理程序问了*相同的问题* ,并获得了以下文档:/fcselect
"docs": [
{"id": "100"}, // ranked first
{"id": "101"}, // ranked second
...
{"id": "199"}, // ranked 30th
...
{"id": "198"} // ranked 35th
...
]
但我希望像以下顺序:
"docs": [
{"id": "199"}, // ranked first
{"id": "198"}, // ranked second
{"id": "100"}, // ranked third
{"id": "101"} // ranked 4th
...
]
排名者是否经过适当培训?