Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. {"searchPhrases" : [
  2. "cheap samsung mobile",
  3. "red nokia 2mp"
  4. ]
  5. }
  6.  
  7. { "searchPhrases" : [
  8. "red peter england shirt",
  9. "redish lee pant"
  10. ]
  11. }
  12.  
  13. db.readData.aggregate(
  14. { $match: {"searchPhrases": { $in : ["cheap samsung mobile"] } } },
  15. { $unwind: $searchPhrases },
  16. { $match: {"searchPhrases": { $in : ["cheap samsung mobile"] } } },
  17. { $group: { _id:"$searchPhrases" } }
  18. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement