Scenario: Here is a typical membership community. Each member has a Profile. Each Profile contains numerous tags. Like: London, Musician, Tennis, Piano, Tesla, etc, etc. Here’s a simplified schema.
Tag File:
Memb ID, string, indexed
Tag, string, indexed
Is there a way to search this Tag File efficiently? That would (for example) return just Memb IDs that match on London & Musician? Without having to create a London List AND a Musicians List and then Loop through the shorter list?
Or… would it be more efficient… NOT to have a Tag File, but rather place all Tags in a single string field named Tag, in the Profile File? Then search using some kind of “full text search” capability?
…
PS: Here’s a great example.
This forum! Click on the Search Magnifying Glass icon and type, “crud api” and instantly you get only the topics with CRUD and API in the heading. Wonderful! That’s what I want to do.