How can I combine $regex with $in in PyMongo?
I want to search for either /*.heavy.*/
or /*.metal.*/
.
I tried in python without success:
db.col.find({'music_description' : { '$in' : [ {'$regex':'/*.heavy.*/'} ]} })
The equivalent in Mongo shell is:
db.inventory.find( { music_description: { $in: [ /heavy/, /metal/ ] } } )
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…