Anyone aware of the best practice for searching ac...
# orm-help
j
Anyone aware of the best practice for searching across say 10 fields? Feels weird to write a really long where query
a
I'd start with the long where query
After that, you may have success if you create and index a "search" field, that updates your keywords when a record is created/modified. then you have just that one field to search against.
Then you may want to look into tools like Elastic Search, which are specific to this sort of searching problem but really their own fully-featured tools