asyncio compatibility shim for tinydb
Project description
aiotinydb
asyncio compatibility shim for TinyDB
Enables usage of TinyDB in asyncio-aware contexts without slow syncronous IO.
See documentation on compatible version of TinyDB
.
Basically all API calls from TinyDB
are supported in AIOTinyDB
. With the following exceptions: you should not use basic with
syntax and close
functions. Instead, you should use async with
.
import asyncio
from aiotinydb import AIOTinyDB
async def test():
async with AIOTinyDB('test.json') as db:
db.insert(dict(counter=1))
loop = asyncio.new_event_loop()
loop.run_until_complete(test())
loop.close()
CPU-bound operations like db.search()
, db.update()
etc. are executed synchronously and may block the event loop under heavy load. Use multiprocessing if that's an issue (see #6 and examples/processpool.py for an example).
Middleware
Any middlewares you use should be async-aware. See example:
from tinydb.middlewares import CachingMiddleware as VanillaCachingMiddleware
from aiotinydb.middleware import AIOMiddleware
class CachingMiddleware(VanillaCachingMiddleware, AIOMiddlewareMixin):
"""
Async-aware CachingMiddleware. For more info read
docstring for `tinydb.middlewares.CachingMiddleware`
"""
pass
If middleware requires some special handling on entry and exit, override __aenter__
and __aexit__
.
Concurrent database access
Instances of AIOTinyDB
support database access from multiple coroutines.
On unix-like systems, it's also possible to access one database concurrently from multiple processes when using AIOJSONStorage
(the default) or AIOImmutableJSONStorage
.
Installation
pip install aiotinydb
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file aiotinydb-2.0.0.tar.gz
.
File metadata
- Download URL: aiotinydb-2.0.0.tar.gz
- Upload date:
- Size: 15.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19baa7225b205c4956a440da12e237626aea9345061210c739198f5d753a98f6 |
|
MD5 | 449f4e87e1ab4038dd53a17e30fdae9a |
|
BLAKE2b-256 | 89304262d5ddbffeb19afa263b35485468a2d12fbf43f7b8d31b3e540aee58b1 |
File details
Details for the file aiotinydb-2.0.0-py3-none-any.whl
.
File metadata
- Download URL: aiotinydb-2.0.0-py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1009fcbbc4315eb250edfe8fded28f1b01598be222b86d6929fb95847da21696 |
|
MD5 | 8991488f7f456eef29fa4c988d24c595 |
|
BLAKE2b-256 | b017692561aec4aa935031667c742a3641e6f71ebc7237036811ebb8031c5ba9 |