We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@ergjustin has found this bug when implementing users filters as in: https://github.com/DendraScience/dendra-web-ui/blob/dev-justin/src/components/UsersSearch.vue#L199
$regex: "${escapeRegExp(search)}"
The text was updated successfully, but these errors were encountered:
We thought we needed to create a mongo text index for email full_name and name but turns out there already was one
email
full_name
name
appDb.users.createIndex( { email: 'text', full_name: 'text', name: 'text' }, { name: 'text_index' } );
Sorry, something went wrong.
so we decided to leave our regex searches as is for now and we will implement a better (Ngram?) search later
Implement n-grams for partial full-text search! https://en.wikipedia.org/wiki/N-gram
No branches or pull requests
@ergjustin has found this bug when implementing users filters as in:
https://github.com/DendraScience/dendra-web-ui/blob/dev-justin/src/components/UsersSearch.vue#L199
$regex: "${escapeRegExp(search)}"
The text was updated successfully, but these errors were encountered: