'Lite' Databases (Re: sqlite3 and dates)

Tim Chase python.list at tim.thechases.com
Thu Feb 19 09:21:48 EST 2015


On 2015-02-18 20:05, rurpy at yahoo.com.dmarc.invalid wrote:
> Sqlite offers concurrent access already.  
> What Sqlite doesn't offer is high performance concurrent write
> access.  That is, it locks the entire database for the duration 
> of a write operation.  Given that most such operations are pretty
> short, for a small number of concurrent writers this is not a 
> big problem.

Though the entire-database-lock, as Steven mentions in another
section of this thread, causes issues on network-shared file-systems.

-tkc







More information about the Python-list mailing list