
SQLite
Alle Bewertungen zu SQLite Filter anwenden
Nutzerbewertungen zu SQLite durchsuchen
Alle Bewertungen zu SQLite Filter anwenden
- Branche: Computer-Vernetzung
- Unternehmensgröße: 10.000+ Mitarbeiter
- Wöchentlich für 6-12 Monate genutzt
-
Quelle der Bewertung
Mehr Details anzeigen
fast flexible database with robust features
SQLite works great for our specific use case as we prefer performance over HA / concurrency.
Vorteile
Extremely portable and fast ACID store. SQLite is very battle tested and highly performant. There are many bindings for various programming languages which makes it easy to get started with. If you couple SQLite with fast SSD, the performance is incredible (since it's just a file). Backup and restore is super easy and fast.
Nachteile
SQLite is for a very specific use case and there are no distribution properties or guarantees. Designed to be very simple so not a lot of tuning for SQLite. If you want high availability and concurrency, you may want to look at a different solution.
- Branche: Computer-Vernetzung
- Unternehmensgröße: Selbstständig
- Weitere für 6-12 Monate genutzt
-
Quelle der Bewertung
Mehr Details anzeigen
Database for as storage
SQLite is perfect for a certain kind of usage. Not for massive access but amazing for compact traditional database.
Vorteile
SQLite is fast and durable due to it's file-as-database approach. SQL Dump is very much compliant with most other databases.
Nachteile
The bottle-neck on concurrency makes SQLite unsable for server/client use.