SQLite is a flat-file database and MySQL is a normal database. That's great but I'm not sure which is faster where or better for what? What are the pros and cons of each option?
|
8
|
|||||
|
|
|
SQLite is great for testing and prototyping, or for embedding in applications. MySQL is worthy of (large scale) production environments. This site has guidance on when to use SQLite Here is my personal summary: SQLite:
MySQL:
|
||||||||||||
|
|
|
Check this link. I think it is quite resonable and it is hard to add anything more. |
||||
|
|
|
From personal experience, I'd say SQLite is production worthy, just not when you're running a web site like stack overflow 8^D I have two applications that use SQLite for the primary data source since they are database style applications. It is FAR easier to deploy this than the Microsoft equivalent and providing updates is as simple as zipping up the file and having the user download and unpack it. In addition, you can use it for serializing basic objects without the hassle of versioning/updates. I will admit part of my dilemma most likely stems from taking my first crack at things, but I had developed a custom object I wanted serialized to a file, followed all the recommended norms, and then had my application not be able to read previous versions when I added a new field. With SQLite, you can modify to your hearts delight, and not break anything. |
||
|
|
|
|
Justin's answer seems to be evaluating from the perspective of a multiuser app (and is a good evaluation). It's good to note though that sqlite has a lot of "single user" production applications. By going single user you get rid of the security and concurrency issues. This allows you access to data via SQL without the overhead of running a server. In practical terms, they are great for "personal databases". Adium X, the sorta-pidgin-port for Mac OS X uses sqlite for its chat logs. I've not personally confirmed this, but my understanding is that the "awesome bar" in Firefox 3 is implemented using sqlite. Also, Mac OS X has an entire data storage API that's built on top of sqlite (which, now that I think about it, is probably why Adium X is using it). I believe the security issues are addressed at the OS layer (unix file permissions, etc). So, while sqlite is not appropriate for large multiuser production applications, it works quite well for single user production apps. |
||
|
|
|
|
SQLite is being use a lot in client-side data stores: Firefox uses it extensively, various apps Apple wrote for the iPhone use it, yum on Linux was rewritten to use it. It's probably more flexible (especially in data structures and indexing) and easy to use than the Berkeley DB's and custom binary formats that some of these things previously depended upon. All those things have something in common: only one process/thread will probably want to write to the database at a time, and a relatively small number of things are going to want to read from it. SQLite blocks all other IO on the table during a write, which isn't so much for multi-user/multi-threaded the whole table when you start doing an update. If you prototype with SQLite, be careful. It's "weakly typed" by default -- you can put a string into an integer column unless you enable strict affinity mode and I'm not sure if that's been implemented yet. |
||
|
|
|
|
To echo what @jaredg said - SQLite won't handle multi-user or even multi-threaded use since writes lock the database. That means you can't even read from the database while it's being updated. More on my experiences with it here. |
||||||
|
|
|
But SQLite handles multi-user fine if all you are doing is reading. Reading does not require a lock. So SQLite can run any well trafficed site/app that doesn't require modifying records. Or where 1 person is doing the editing. Like a blog with no comments. It's small, available on all platforms and free. Also open source, and the code is well documented. So change what you want. I think SQLite is fit for mass production. Look at Firefox, iTunes, etc, etc. And to the OP: Compared to any other SQL server MySQL is easy peasy to set up. I mean com'on, on Windows you install answer a few questions and you off. Pretty much the same on Mac or any Linux destro. |
|||
|
|
|
|
There is an excellent interview with D. Richard Hipp, creator of SQLite, on FLOSS Weekly. In this interview, he discusses when, and when not, to use SQLite among many other things. |
||
|
|
|
|
It seems for a huge majority of sites using MySQL, SQLite would be more than adequate. It just seems to be a mindset that "if it's anything resembling production, I have to use MySQL!" I would say that if you don't have to do any performance-fiddling with MySQL, you can get away with using SQLite.. |
||||
|
|
|
Another difference: SQLite supports transactions without the overhead of InnoDB. I would consider SQLite for a website running on a VPS with very little memory. |
||
|
|
|
|
We heavily use both SQLite and MySQL in production. The SQLite databases get used where we have a large amount of mostly read-only data. We build this datasource from a large number of flat files held in our subversion repository, and then distribute copies of the data to production nodes which require access to it. Profiling SQLite is much trickier than with MySQL - particularly if you're wanting to get data from your production nodes. This is something you'd have to do in your application. It's also less than straightforward to have SQLite's query planner tell you what it's going to do with certain queries, which makes optimisation tricky. |
||
|
|
|
|
I am building a simple logging app that will store logs with tags and be private to one user. I plan to use other means for reporting and search, Sphinx indexes, Hadoop, etc. I am about to pull the trigger on using sqlite for the db because then the client and server side db can be exactly the same. I can mail users copies of their db file if things go wrong. I am hoping that I can roll the sqllite logs over if the data gets too huge. I am also wondering if it's possible to index the sqllite files themselves without having to export the data via xml to Sphinx. |
||
|
|
|
I use sqlite as development db for website and then deploy to mysql on production. This is easier to setup and since data are stored in simple flat file you can copy / move them like you want (great when you try to make major structure change but want revert back option). I also use sqlite as desktop apps file save format for anything that look/sound/smell like "save"/"save as"/"load"/"import"/"export". |
||
|
|
|
|
mysql vs sqlite r 2 plataforms por diferentes applications, sqlite is perfect por standalone apps or databases and querys veri ligth, and mysql is pefect for client-server apps more complex apps |
||
|
|
