-
Notifications
You must be signed in to change notification settings - Fork 102
Tips for working with Quepid
Eric Pugh edited this page Jan 14, 2021
·
30 revisions
- Did you know you can add multiple queries at once by separating them with a
;
character? Go ahead and try outstar wars;star trek
in the Add Query field. - You can add a thumbnail image to each document result via
thumb:poster_path
, this assumes you have the full url in the fieldposter_path
in your document. - If you have an audio/image/video URL, you can embed in in the result listing via
media:field_name
- Sometimes you need to look at the original document. If your field value starts with the string
http
orhttps
then it will be turned into a clickable link. - Do you have a nested JSON document in your results like
{ "variants": [ { "name": "red" }, { "name": "blue" } ] }
? Specify your field asvariants.name
and it will pluck out the values red,blue from the array. If you have{ "actor": { "name": "bob hope", "id":52 } }
you can doactor.name
to just get the name.
There are some blog posts that you may find valuable as well:
- Custom Scorers Howto
- How to write a Unit Tests against Search Results
- How to write your own NDCG scorer - Great for learning how to write scorers! NDCG@10 now ships as default with Quepid.
- Quepid Carries Your Caseload
- How to compare Legacy Search Results to Current Search in Quepid
- Introducing the Show Only Rated toggle in Quepid