sqlitedict icon indicating copy to clipboard operation
sqlitedict copied to clipboard

Feature Request: Asyncio support

Open bitnom opened this issue 5 years ago • 1 comments

It would be nice to have sqlitedict methods as co-routines. Thoughts?

bitnom avatar Aug 31 '20 10:08 bitnom

sqlitedict runs in threads with a single connection or in processes with multiple connections. This works without using locks in the python code. all necessary synchronizations are at the sql driver level. Great job! I gave up on leveldb because of the inability to work with multiprocesses. sqlitedict - no problem. I use it to cache large constants on disk (smartcontract codes)

longnetwork avatar Jul 19 '22 17:07 longnetwork