我使用Motor驱动程序进行异步访问来读取mongo集合。当我运行我的应用程序时,它返回一个None值。当我与PyMongo同步运行时,它正常运行。我已按照以下两个示例进行操作:http://blog.mongodb.org/post/30927719826/motor-asynchronous-driver-for-mongodb-and-python和http://emptysquare.net/motor/pymongo/api/motor/tutorial.html。
以下是我的部分代码:
import tornado.httpserver
import tornado.websocket
import tornado.ioloop
import tornado.web
import tornado.options
from tornado import gen
from bson import json_util
import json
import os.path
import motor
events = []
class WSHandler(tornado.websocket.WebSocketHandler):
@tornado.web.asynchronous
@gen.engine
def open(self):
import traceback
global events
print "tailing for events %s...." % events
try:
coll = db.blah_tail
cursor = coll.find(
{ "$and" : [
{"term": {"$in": events}},
{ "$or" : [
{"coordinates.type" : "Point"},
{"place.full_name" : {"$ne" : None}}
]}
]},
{"coordinates" : 1, "place.full_name" : 1},
tailable = True, timeout = False )
while cursor.alive:
try:
doc = yield motor.Op(cursor.next_object)
print doc
self.write_message(json.dumps(doc, default = json_util.default))
except StopIteration:
pass
db = motor.MotorConnection().open_sync().blah
if __name__ == "__main__":
print 'Server is alive.....'
app = tornado.web.Application(
handlers=[(r'/', MainHandler),
(r'/ws', WSHandler)
], db=db,
template_path=os.path.join(os.path.dirname(__file__), "templates"),
debug=True)
tornado.options.parse_command_line()
http_server = tornado.httpserver.HTTPServer(app)
http_server.listen(8888)
tornado.ioloop.IOLoop.instance().start()
Motor使应用程序异步,但我不确定为什么它基本上不会从数据库中的集合中读取任何内容。
由于
答案 0 :(得分:2)
能够通过修改代码来纠正它:
doc = yield motor.Op(cursor.next_object)
if doc:
print doc
self.write_message(json.dumps(doc, default = json_util.default))
因此,如果第一个调用没有返回文档,则阻止返回None。 Motor的创建者的摘录解释得更好:“问题是,因为cursor.alive为True并不能真正保证next_object实际上会返回一个文档。如果找不到匹配的文件,第一个调用将返回None。 。,(http://emptysquare.net/blog/category/motor/)。