What is a Cursor in MongoDB?

前端 未结 4 928

We are troubled by eventually occurring cursor not found exceptions for some Morphia Queries asList and I\'ve found a hint on SO, that this might be quite memor

4条回答
  •  既然无缘
    2020-12-08 07:35

    A cursor is an object returned by calling db.collection.find() and which enables iterating through documents (NoSQL equivalent of a SQL "row") of a MongoDB collection (NoSQL equivalent of "table").

提交回复
热议问题