MonetDB / pymonetdb

The Python API for MonetDB
https://www.monetdb.org/
Mozilla Public License 2.0
28 stars 20 forks source link

Investigate thread safety #37

Open gijzelaerr opened 5 years ago

gijzelaerr commented 5 years ago

at the moment we are not thread safe when sharing connections or cursors. This is okay, the DBAPI allowes it, as long as as the .threadsafety parameter is set correctly:

https://www.python.org/dev/peps/pep-0249/#threadsafety

which we do. But ideally we are also threadsafe when sharing connections and cursors.