-
-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Advanced Search Options #15
Comments
Hi, agreed on a lot of this but I think there are several separate features here so this might need splitting across a few issues: The first, and possibly simplest to fix is the search query string. The current search implementation has only one catch-all way of interpreting the string, which tries as user-friendly as possible, combining several ways of normalizing and checking the input string against the What we probably want is a checkbox in the UI along with an API param something like The current highest priority issue is the crawler rewrite but this could probably come soon after. For the other things you mentioned:
We need to balance search capability and resource demands - many people may be running this on modest hardware. We currently have a single
These are all valid features but they'll have to be implemented separately, and some would need discussion, so these would be easier to digest/discuss as separate feature requests. |
An advanced search feature would greatly improve the usability of bitmagnet by allowing users to craft more precise and complex queries. Here are some suggested search options to implement:
"Keyword1 keyword2"
. For instance, a search for"kw1 kw2" kw3 kw4
would return results containingkw1
andkw2
together (in that order), andkw3
andkw4
appearing anywhere in the result.&
, OR|
, NOT-
) for more complex queries.*
or?
to match patterns (e.g.,s01ep*
to match episode numbers).Implementing these features would allow users to craft very precise searches to quickly find their desired content. It would make Bitmagnet's search capabilities highly competitive with other torrent sites. I think they often don't offer these features on websites because they are resource-intensive, but they are a good fit for a self-hosted program. Please consider adding advanced search options!
There are other ideas for a visual style advanced search instead of syntax based on this issue
Related
The text was updated successfully, but these errors were encountered: