似乎我使用 mongodb和 python得到了2 个不同的结果count()
len()
db.users.find({"adresse.coord":{"$within":{"$center":[[4.365041,36.743954],100]}}}).distinct("produit_up")
Out[17]:
[{u'avatar': {u'avctype': u'image/jpeg',
u'orientation': u'portrait',
u'photo': ObjectId('506f2ee93a5f3a0528ab8621')},
u'spec': {u'abus': 0,
u'date': u'2012-10-05',
u'description': u'brrrrrrrrrrr',
u'id': u'tofla134946378579',
u'namep': u'nokia 6230',
u'nombre': 2,
u'prix': 1000,
u'tags': [u'nokia', u'6230', u'photo'],
u'vendu': False}},
{u'avatar': {u'avctype': u'image/jpeg',
u'orientation': u'portrait',
u'photo': ObjectId('506867863a5f3a0ea84dcd6c')},
u'spec': {u'abus': 0,
u'date': u'2012-09-30',
u'description': u"portable tr\xe8s solide, peu servi, avec batterie d'une autonomie de 3 heures.",
u'id': u'alucaard134901952647',
u'namep': u'nokia 3310',
u'nombre': 1,
u'prix': 1000,
u'tags': [u'portable', u'nokia', u'3310'],
u'vendu': False}},
{u'avatar': {u'avctype': u'image/jpeg',
u'orientation': u'portrait',
u'photo': ObjectId('506f2b3e3a5f3a0b3c4731a9')},
u'spec': {u'abus': 0,
u'date': u'2012-10-05',
u'description': u'bzzzzzzzzzz',
u'id': u'alucaard134946284638',
u'namep': u'nokia 6230',
u'nombre': 1,
u'prix': 2000,
u'tags': [u'nokia', u'nok', u'noki'],
u'vendu': False}}]
db.users.find({"adresse.coord":{"$within":{"$center":[[4.365041,36.743954],100]}}}).count()
Out[18]: 2
len(db.users.find({"adresse.coord":{"$within":{"$center":[[4.365041,36.743954],100]}}}).distinct("produit_up"))
Out[19]: 3