News

is possible to create storage with sqlite? I already created a prototype with your api but no caching mechanism using unidbm which they store pickle/json in sqlite row with table name and bolb column ...
import TimestampsMiddleware from tinydb import TinyDB from tinydb.storages import MemoryStorage with TinyDB(storage=TimestampsMiddleware(MemoryStorage)) as db: db.insert({"foo": "bar"}) for doc in db: ...