On Jul 2, 10:20 pm, David Marko <[EMAIL PROTECTED]> wrote:
> I'm just considering using SQLite in small Django project(in
> production environment). I have no fear about performance but what
> troubles me is whether SQLite can be used in environment like Apache
> +mod_wsgi? As SQLite is file based database, isn't there concurrency
> problem?
>
> Can someone explain?

You may need to either run embedded mode with Apache prefork, or if
using daemon mode, only have one thread per daemon process.

Situation may have changed and I don't know, but according to:

  http://www.sqlite.org/cvstrac/wiki?p=MultiThreading

there can be problems when using SQLITE database connection object
from multiple threads.

This would mean only single threading possible in the context of
mod_wsgi unless Django does something such that it creates different
database connection objects for distinct threads used to handle
requests.

Does this still apply? Can anyone else comment further?

Graham
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to