DEV Community

Discussion on: Choosing the Right Database for Your Project: Beyond Personal Experience

Collapse
 
efpage profile image
Eckehard

For small projects SQlite can also be a smart choice. As it has no database server, you will need PHP or Node.JS to access your data, but administration and backup is super easy.

If you need to deal with large scale time series data, there is no way around influxDB. Operations like aggregation or interpolation on the data are performed on the server and make this operations very fast.

Collapse
 
zhukmax profile image
Max Zhuk

Thank you for comment. I plan to write a few more articles about other sql databases.

Collapse
 
efpage profile image
Eckehard

Please mention other approaches like NoSQL, FlatFile and TSDB too. It is always good to know the strength and limitations of the different database types.

Collapse
 
7bcc_f6fc_8790a62e13e483b profile image
7bcc f6fc

sqlite uses with applications - it is 'no install' db, only driver is used.