Hide Forgot
Description of problem: When I do: `dnf search python` requests I get over 5000 lines of output, that I need to scroll through to find what I'm looking for (what was actually just python-requests) Version-Release number of selected component (if applicable): 1.1.10 How reproducible: always Steps to Reproduce: 1. dnf search python requests 2. get your terminal overflowed with text Actual results: Over 5000 results with weird ordering and grouping. Expected results: List of several most relevant results (max tenths of results), maybe the most relevant at the bottom.
dnf search python requests actually searches for "python or requests". So dnf search requests would gave you (less and) more relevant answers. The weird ordering is "best match first". As described above we don't consider current behaviour a bug.
So how would one search for "python and requests"? And if I search e.g. for "python", I get again over 5000 results. I can see that the results are oreded in several 'groups' (I think name&description, name, description) but in each group ordered by length of the matched fields. How is e.g. length of descritpion field linked to relevance?