Changes between Version 25 and Version 26 of IrcFAQ


Ignore:
Timestamp:
Mar 6, 2007, 7:45:45 AM (17 years ago)
Author:
Paul Bx <pb@…>
Comment:

minor typo cleanup

Legend:

Unmodified
Added
Removed
Modified
  • IrcFAQ

    v25 v26  
    6464== What database should I use? == #WhichDB
    6565
    66 For development, most people find SQLite to be fastest and simplest to run with bBut make sure the database and its directory are writeable by the owner of the web server process!). For production, PostgreSQL is probably the most thoroughly-tested of the databases Django supports, but it's best to choose based on the needs of your applications; for example, applications which do very little writing of data to the DB will enjoy the speed of SQLite, but applications which involve many complex queries or which require robust concurrent-write features like transaction isolation will probably want to look at Postgres (and, of course, MySQL is often handy simply because many shared hosting providers have it set up by default).
     66For development, most people find SQLite to be fastest and simplest to run with -- just make sure the database file and its directory are writeable by the owner of the web server process. For production, PostgreSQL is probably the most thoroughly-tested of the databases Django supports, but it's best to choose based on the needs of your applications; for example, applications which do very little writing of data to the DB will enjoy the speed of SQLite, but applications which involve many complex queries or which require robust concurrent-write features like transaction isolation will probably want to look at Postgres (and, of course, MySQL is often handy simply because many shared hosting providers have it set up by default).
    6767
    6868== The admin is working, but it can't find the Javascript and CSS and image files. == #AdminFiles
Back to Top