just curious, is there a better way to search multiple indexes at once rather than doing a listDocuments for each one? Any way to combine search queries to search all full text indices?
Sounds like you want to do an OR?
Sort of, I was trying to use search over multiple indices
I have a data table in Vuetify that has a search parameter optionally, and when I search a collection I'd love to be able to search a list of attributes that are fulltext indexed rather than what seems to be like I need to search through each attribute?
Which is like:
Search(attr1, keyword) OR
Search(attr2, keyword) OR
Search(attr3, keyword)
Since we don't support OR yet, this isn't possible.
One hack with search is you can create 1 search attribute with all the data you want to search across and then create a full text index on that attribute
Ooooh that’s genius thank you for that ❤️
I’ll implement that today!!
[SOLVED] Best way to search multiple indexes?
Recommended threads
- Dart 3.10 runtime on self-host 1.8.1
I added dart-3.10 runtime in .env file, applied the changes, but cannot see such option on console. is dart 3.10 not supported by self hosted 1.8.1? if not, whe...
- Guideline of AI
Hello everyone, I’m planning to specialize in Artificial Intelligence (AI) and I’m currently looking for guidance from someone with strong experience in the fi...
- Authentication on custom Websocket Serve...
Hi, I want to use a custom Websocket Server (using Bun) for my application. However I cant really figure out authentication on custom servers. Session cookies ...