Giter Site home page Giter Site logo

Comments (1)

motine avatar motine commented on July 23, 2024
  • The resource manager delegates it to the RM
  • We need to make lookup_slice return multiple records if there is a list specified.
  • This may lead to adjusting the mongodatabase plugin here. We need a general concept that multi-lookup is handled.
  • Consider the following example to see how it may work in pymongo:
import pymongo

def print_contents(cursor):
  print "\n".join([str(x) for x in cursor])

client = pymongo.MongoClient()
db = client['testdb']
collection = db['col']

# # insert test data
# collection.insert({"a" : 1, "b" : 10})
# collection.insert({"a" : 2, "b" : 20})
# collection.insert({"a" : 3, "b" : 30})
# collection.insert({"a" : 4, "b" : 40})

print "retrieve one:"
print_contents(collection.find({"a": 2}))
print "retrieve multiple (or, naive, defunc):"
print_contents(collection.find({"a": [1,2]}))

print "retrieve two (working):"
print_contents(collection.find({"a": {"$in" :[1,2]}})) # see http://docs.mongodb.org/manual/reference/operator/query/

from ohouse.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.