
SQLite
Alle Bewertungen zu SQLite Filter anwenden
Nutzerbewertungen zu SQLite durchsuchen
Alle Bewertungen zu SQLite Filter anwenden

- Branche: Computer-Vernetzung
- Unternehmensgröße: 201–500 Mitarbeiter
- Wöchentlich für Mehr als 2 Jahre genutzt
-
Quelle der Bewertung
Mehr Details anzeigen
Exactly what the name says SQL lite
Whenever I need a database, SQLite is always a top option. Local storage is needed in most projects and the ability to use SQLite on almost any platform in almost any language means I always have the ability to execute the project with ease.
Vorteile
SQLite is a go to for when I need a quick lite weight database. It provides the ability to create local storage with the ability to integrate into most programming languages. It uses the familiar SQL structure and doesn't require any administration.
Nachteile
There are some areas where it deviates from using SQL language, but it is usually easily fixed by a quick Google search.
- 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.
- 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.