> Hi all,
>
> Has anyone been doing some testing on how sqlite performs in a networked
> multiuser environment?
>
> Cheers

I think what I and a lot of other users do in a situation like this is to
wrap a server around SQLite itself that serializes requests so that you only
ever run the DB from one thread.  While it requires more work, I have found
that SQLite performs quite well like this, depending on what you're trying
to do.  Obviously only one requests can be processed at a time, but since in
most situations SQLite is very fast, you don't notice it unless you are
really trying to do some complex querying.  I guess it just really comes
down to what you're trying to accomplish and what you need the database for.

Jay Macaulay


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to