-
Notifications
You must be signed in to change notification settings - Fork 15
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
[WISH] fulltext search #21
Comments
Currently it's not possible. Unfortunately, implementing a decent full text search is not trivial. |
an idea is add possibility to add tags in any issue and can filter in search? |
You can use multi-select dropdown attributes as tags. |
Full text indexes are available on most RDBMS including MySQL, PostgreSQL and SQL Server. To create an index (on MySQL) use:
To search for text (on MySQL) use the following syntax:
For advanced searches you can use boolean mode in MySQL but that could be added at a later date. It's not something I need right now as I've just started using the application (which is awesome btw), but I could see the benefit to search issue descriptions. I don't know PHP, but I'd be happy to help if you have any questions on the database side. |
I started using webissues and is awesome, but it would be nice implement a search capability on description field. |
From experience it is nesseccary to have a fulltext search option that does not only search for a term in the ticket title, but also in the ticket body.
If this is possible I found no way to do it?
The text was updated successfully, but these errors were encountered: