Author of Python behind the scenes
Building dstack.ai
My blog: http://tenthousandmeters.com
Other projects: https://github.com/r4victor
Explanation: SQLite is known to have limited concurrency. It uses a global lock to sync writes. With too much contention it's less efficient than, say, a go mutex because it's a file lock.
Explanation: SQLite is known to have limited concurrency. It uses a global lock to sync writes. With too much contention it's less efficient than, say, a go mutex because it's a file lock.