Appropriate Uses for SQLite
sqlite.org
Appropriate Uses for SQLite
1–10 of 39 posts
Re: Appropriate Uses for SQLite
#2Re: Appropriate Uses for SQLite
#3I was fooled by the name for a long time. "SQLite? That's what you use to store 160 phone book entries or something." How wrong I was.
Re: Appropriate Uses for SQLite
#4I am curious to know how many people here solely use SQLite to power the back-end of their web application(s), especially when the page states, "SQLite does not compete with client/server databases."
(Or is the page referring to content-management-system-type websites?)
Re: Appropriate Uses for SQLite
#5I was fooled by the name for a long time. "SQLite? That's what you use to store 160 phone book entries or something." How wrong I was.
So far the main issues I've been having is I have a lot of complex joins, and it doesn't seem to want to use appropriate indexes all the time. If I'm joining 2 tables on an indexed field, it is ok, but as soon as I add a 3rd or 4th table the performance falls apart. So my current workaround is to join 2 tables into a temporary table, add an index, then join that temp table to a 3rd one.
Re: Appropriate Uses for SQLite
#6 "The SQLite website (https://www.sqlite.org/) uses SQLite itself, of course,
and as of this writing (2015) it handles about 400K to 500K HTTP requests
per day, about 15-20% of which are dynamic pages touching the database.
Each dynamic page does roughly 200 SQL statements. [...]"
Wait... What? They're saying that their dynamic pages are executing 200 SQL statements per request?Off-topic: I enjoyed reading this article which was posted here a while ago http://www.sqlite.org/testing.html
Re: Appropriate Uses for SQLite
#7Also, the same list if uses can be applied to nedb as a lightweight alternative to MongoDB.
Re: Appropriate Uses for SQLite
#8I was fooled by the name for a long time. "SQLite? That's what you use to store 160 phone book entries or something." How wrong I was.
I'm using WebSQL / Sqlite to store TV show data on the user's system. works like a charm, databases regularly grow to 10+mb, never had a problem with crashes, speed or anything like it. Plus, everything runs locally Now I really hope that Spartan can implement WebSQL as well...
I really enjoyed the simplicity of it all.
Re: Appropriate Uses for SQLite
#9Re: Appropriate Uses for SQLite
#10How does SQLite handle replication? Can I have 10 app server nodes reading from one SQLite DB? NFS?
I've used SQLite over NFS for replication. It worked fine.