asyncmongo
asyncmongo copied to clipboard
An asynchronous library for accessing mongo with tornado.ioloop
Why do third-party libraries have their own reference problems? `from errors import (Error, InterfaceError, AuthenticationError, DatabaseError, RSConnectionError ` `No module named 'errors' `
error : function takes at most 2 arguments (3 given) update connection.py ... from errors import ProgrammingError, IntegrityError, InterfaceError import helpers **import pymongo.helpers as helpers** # replace helpers for pymongo...
[](https://reviewable.io/reviews/bitly/asyncmongo/39)
It seems the tests are always installing `tornado=2.4.1` and tornado 3.0 and higher is not supported yet. Is that right? I'd like to upgrade python-tornado to 3.1.1 and it seems...
in newer version of bson, some parameters are changed.
something: ``` index = SON() for (key, value) in index_list: if not isinstance(key, basestring): raise TypeError("first item in each key pair must be a string") if value not in [ASCENDING,...
The cursor.find() method does not support access to all records from a collection, so I add OP_GET_MORE within it.
**Issue** - The Blocking IO Connection will causing that the tornado service can not respond new HTTP Request, when MongoDB server goes down(Error: no route to host). **New Feature** -...