J'utilise maintenant mongodb.
J'ai une collection d'articles de blog, et elle a une tags
qui est un tableau, par ex.
blogpost1.tags = ['tag1', 'tag2', 'tag3', 'tag4', 'tag5']
blogpost2.tags = ['tag2', 'tag3']
blogpost3.tags = ['tag2', 'tag3', 'tag4', 'tag5']
blogpost4.tags = ['tag1', 'tag4', 'tag5']
Comment puis-je effectuer ces recherches ?
- contient
tag1
- contient
['tag1','tag2']
- contient l'un des éléments suivants
['tag3', 'tag4']