Changes between Version 32 and Version 33 of IrcFAQ


Ignore:
Timestamp:
Mar 28, 2007, 9:04:40 PM (17 years ago)
Author:
Malcolm Tredinnick
Comment:

Stop tresting MySQL like a second-class citizen for no reason.

Legend:

Unmodified
Added
Removed
Modified
  • IrcFAQ

    v32 v33  
    7474== What database should I use? == #WhichDB
    7575
    76 For 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).
     76For 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 and MySQL are 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 or MySQL (and, of course, MySQL is often handy simply because many shared hosting providers have it set up by default).
    7777
    7878== The admin is working, but it can't find the Javascript and CSS and image files. == #AdminFiles
Back to Top