A
A
alk2016-01-13 13:42:16
Django
alk, 2016-01-13 13:42:16

Should you use sqlite on your blog site?

Should I use sqlite database in my blog site? (Tempted by the potential portability of the site without the hassle of deploying a database server)
What are the performance issues in this case?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
O
Oleg Gamega, 2016-01-13
@Alexey_Kutepov

no, SQLite is good for development, but in production... it's not what it was designed for, SQLite is a good choice for applications, for the web, use back-end databases.
problems:
writes only in one stream (you can bypass with crutches, but why)
slow
, a lot is cut out (you can turn it on, but again ... why? )

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question