PMXBOT Log file Viewer

Help | Karma | Search:

#mongodb logs for Monday the 13th of April, 2020

(Back to #mongodb overview) (Back to channel listing) (Animate logs)
[00:46:27] <f3r70rr35f> hello
[00:47:25] <f3r70rr35f> does anybody knows why a fresh mongodb installation might be periodically droppping collections?
[06:00:39] <quarters> hello.is mongodb usable in an enterprise without a license?
[18:10:58] <ario> wait
[18:11:01] <ario> can i do osmething like this: db.applicants.find({status: {$or: ['accepted', 'disqualified']}})
[20:51:39] <advorak> ario, I'm still brushing up on mongo, myself.. how about: db.applicants.find({status: {$in: ['accepted', 'disqualified']}})
[20:56:33] <advorak> ario, which is think is equivalent to: db.applicants.find({$or: [{status: 'accepted'},{status: 'disqualified'}]})
[20:57:08] <advorak> Equivalent in terms of the data it outputs .. I'm sure somebody can correct me as to why the queries are functionally different in how they operate. :-)
[22:48:50] <ario> yea
[22:49:05] <ario> i didn't really want to call status: repeadtly
[22:49:09] <ario> repeatedly
[23:28:37] <advorak> Looks like $in is what you want, then..