-
Notifications
You must be signed in to change notification settings - Fork 2
feat: search bar #190
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
base: develop
Are you sure you want to change the base?
feat: search bar #190
Conversation
ref: #186
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
Do we not want to use solr for this? |
Yes, I would like to use Solr eventually. |
I hope it's ok if I comment here.... The way you're indexing data by concatenating it into a single field with a pipe delimiter, and then doing a regex search on that string, is really not the way you're supposed to do it with Solr.
You already seem to have this in place: https://github.com/DDMAL/VIM/blob/develop/solr/cores/conf/schema.xml#L58C5-L68C17 However, you're missing a To fix this, you need to define a
|
Thank you very much for the comments! I’ll make the changes based on your comments. |
Implement the search bar using Django ORM search.
Resolves: #186