Restream / reindexer

Embeddable, in-memory, document-oriented database with a high-level Query builder interface.
https://reindexer.io
Apache License 2.0
761 stars 64 forks source link

Python AsyncIO support #44

Open techdragon opened 5 years ago

techdragon commented 5 years ago

It would be really useful if the python bindings supported the async features in the newer versions of python.

olegator77 commented 5 years ago

Hi! The current version of python binding is uses C++ client under the hood, which is uses it's own threads and event loop. So it seems it is not compatible with asyncio's event loop.

But even It's possible to use reindexer by http API with async IO :)