Introducing
The Slant team built an AI & it’s awesome
Find the best product instantly
Add to Chrome
Add to Edge
Add to Firefox
Add to Opera
Add to Brave
Add to Safari
Try it now
4.7 star rating
0
What is the best alternative to ArangoDB?
Ad
Ad
OrientDB
All
13
Experiences
Pros
9
Cons
3
Specs
Top
Pro
Multi-model database (document, object, graph)
This database is primarily, or historically, thought of as a graph database. However, it is actually a multi-model database that supports a variety of noSQL models (key-value, document, etc.).
See More
Top
Con
Not well known
It's a very unfortunate thing, but it's true. Not many people know of this gem so that makes it difficult to find community support at times. It also makes it hard to get people on board with it who shop products by brand name or flashy marketing. It also means there are fewer code snippets, libraries, and frameworks that consider it. While it's interoperability is good with SQL support and Tinkerpop, it still doesn't change the fact that many things don't give it much thought and that can lead to more work as a developer sometimes.
See More
Top
Pro
Open Source commercial friendly license (Apache 2)
The Apache 2 license is one of the most liberal licenses. You can use OrientDB for any purpose for free.
See More
Top
Con
Learning curve
A lot of effort went into making OrientDB easy and familiar to use (such as SQL queries for example). However, it's important to understand the database engine a bit and how it works in general (links for example). This involves a bit of a learning curve if you're not familiar with graph databases. Not an enormous curve or anything, but it's still a consideration.
See More
Top
Pro
Free clustering support
Unlike other NoSql databases, OrientDB offers clustering support for free. Furthermore, it's not a basic Master/Slave, but it supports Master-Master replication + Sharding.
See More
Top
Con
Bulk inserts may cause an out of memory crash
When doing inserts in OrientDB you have to be careful to do them one at a time. Bulk inserts may cause out of memory error.
See More
Top
Pro
Distributed Graph Database with relational type Documents
See More
Top
Pro
Supports sql as well as other query languages
It can be queried in a number of ways, but the ability to query with SQL makes it a bit more familiar to use.
See More
Top
Pro
Multi-master replication
OrientDB is incredibly scalable thanks to its multi-master replication. All nodes in a cluster can both read and write.
See More
Top
Pro
Full text search
Full text search support is available when using Lucene based indexing algorithm.
See More
Top
Pro
Performance
OrientDB is very fast, especially when it comes to relationships between records (or "links").
See More
Top
Pro
Enterprise version available
The Community Edition is free and covers many features, but an Enterprise Edition is available (prices are transparent, published online) with 24x7 support.
See More
Specs
Platforms:
Windows, Linux, Mac
Technology:
Java
Hide
See All
Experiences
Free
41
11
AceBase realtime database
All
5
Experiences
Pros
3
Cons
1
Specs
Top
Pro
Also runs in the browser
Besides having a client that connects to a remote AceBase server, the database itself is able to run in the browser. It uses the same to codebase with a different storage provider (IndexedDB instead of binary in Node.js), which makes it possible to run a fullblown realtime database in the browser that syncs between multiple tabs, and can additionally be used as local cache database for an AceBase client to enable offline usage.
See More
Top
Con
Only has Javascript SDK
There currently are no other SDKs besides the Javascript client, which limits its usage to Node.js / Electron / Web environments only. However, the project is fully open-source and the server has a REST API, so most database operations can also be performed using http requests. The latter also makes it possible for the community to develop their own client SDKs.
See More
Top
Pro
Synchronizes very well
Realtime data change notifications are blazingly fast which makes synchronization between apps instant and effortless. When used offline, local and remote changes are synchronized upon reconnect without any hassles. Changes are logged on the property level which makes them synchronize extremely efficient and fast.
See More
Top
Pro
Very easy to setup
It takes very little effort to add AceBase to a Node.js or web project, it's ready to use after installing it as a dependency. It uses a API very similar to that of the Firebase realtime database, which makes it familiar and easy to migrate from Firebase to AceBase for a local db instance or fullblown realtime db server.
See More
Specs
Platforms:
Windows, Mac, Linux, Web
JSON?:
Yes
Hide
Free
2
0
RethinkDB
All
10
Experiences
Pros
7
Cons
2
Specs
Top
Pro
Easy install
Only takes about 30 seconds to install. They also have a docker file for running it on AWS, Google Cloud or your own.
See More
Top
Con
Cannot run queries from its CLI
See More
Top
Pro
Changefeeds (change listeners)
You can listen to changes and trigger code based on these changes.
See More
Top
Con
No user accounts
This is just the database, you need to setup your own auth and user accounts (such as using Auth0).
See More
Top
Pro
Powerful query language
RethinkDB's ReQL is a very powerful functional query language. The functional aspects of ReQL and the straightforward implementation of the Node driver for Rethinkdb make it a natural fit for Javascript developers. You no longer have to type some obscure syntax in quotes (aka SQL), your queries are just "natural" Javascript functions in the same way you would use lodash to handle your collections.
See More
Top
Pro
Auto master promotion
Unlike a lot of other databases where if the master is down the system is down, this one if the master is down someone else is made master so much more peer to peer.
See More
Top
Pro
CLI and web administration tools
RethinkDB has administration tools in both CLI and GUI (web app). You can view whats going on right away by going to localhost:8080. The data explorer allows you to run queries on the db.
See More
Top
Pro
Horizontal scalability
RethinkDB is scalable horizontally. It has support for sharding, parallel queries and MVCC concurrency.
See More
Top
Pro
Ease of cluster setup
You can directly tell it to shard/replicate and how many shards/replicas depending on the amount of nodes. Each node doesn't need anything except one other node's ip/port in the cluster to join and maybe the auth.
See More
Specs
Platforms:
Windows, Linux, Mac
Technology:
C++, Python
JSON?:
Yes
Hide
See All
Experiences
Get it
here
120
44
PostgreSQL
All
11
Experiences
Pros
9
Cons
1
Specs
Top
Pro
High performance
PostgreSQL performance increases with each release, this is also proven by many benchmark tests. Notable performance features include: As PostgreSQL only supports one storage engine, it has been able to integrate and optimise it and with the rest of the database. This has resulted in multiple benefits such as the ability to allow different transaction types to co-exist efficiently without the need to select storage engine types once for each table ahead of time. On the fly data compression resulting in less IO required for reading. Asynchronous + synchronous Replication. PostgreSQL supports a asynchronous API for use by client applications. It is reported to increase performance by up to 40% and is not supported by MySQL. Designed to scale very well with large numbers of cores at high concurrency levels.
See More
Top
Con
Not suited for small apps
Because of it's complexity and power, it may be an overkill to use PostgreSQL in small applications that will not make use of it's full power.
See More
Top
Pro
Fully ACID compliant
PostgreSQL is known to have a very holistic approach to robustness and data integrity which is reflected by it being fully ACID compliant. PostgreSQL has always been strict about making sure data is valid before allowing it into the database, and there is no way for a client to bypass those checks. Depending on your requirements, ACID compliance might be important.
See More
Top
Pro
Strong community
PostgreSQL has a strong community backing it, with guides, tutorials and support for any kind of problem a developer may have.
See More
Top
Pro
Support for JSON data type
JSON data can be stored as a column with optional indexes. In 9.4 (upcoming at the time of this writing), JSONB will be a binary version of JSON that will save space. It's like the best of the NO-SQL world without having to give up ACID and Relationships. This means that cascading deletes can be done in a single Transaction across multiple JSON documents.
See More
Top
Pro
Actively developed
Regular fixes and features are released
See More
Top
Pro
Support for geographic objects
PostgreSQL can be extended to have geographic object support through PostGIS and allows for location queries to be run through SQL.
See More
Top
Pro
Multiple node packages available
There are many packages (like Sequelize) that integrate deeply with the features Postgres offers.
See More
Top
Pro
Support Perl and Python for coding stored procedures
Postgres supports popular languages for coding stored procedures, such as Perl and Python. So, you can fairly easy transform just DB-server to reliable Service with complex business logic.
See More
Top
Pro
Open Source, powerful and on par with other paid RDBMS'
It is a powerful, open source product that has all the bells and whistles when compared with its costly, proprietary counterparts.
See More
Specs
Platforms:
Windows, Linux, Mac, BSD
Technology:
C
JSON?:
Yes
Hide
See All
Experiences
Get it
here
352
33
MySQL
All
5
Experiences
Pros
3
Cons
1
Specs
Top
Pro
Scalable
MySQL is made to handle a lot of data and to be used in large applications. This makes it extremely scalable and fast, even under a lot of workload.
See More
Top
Con
Error messages usually are not very detailed
When you are trying to do something in MySQL and something goes wrong it will simply give you an error message with an error code. Which does not say much about what went wrong unless you look it up online. This can be a little cumbersome during development.
See More
Top
Pro
Multiple third-party tools that help working with MySQL
Since MySQL is one of the most popular relational databases, maybe the most popular, there exist many third-party tools and applications that help developers to use MySQL in their development.
See More
Top
Pro
Easy to start working with
Because of it's popularity there are a lot of tutorials and guides out there that help developers install and work with MySQL. The installation process itself is not very hard and there are multiple powerful GUI tools that make it extremely easy to work with MySQL for a beginner.
See More
Specs
Technology:
C/C++
Hide
Get it
here
108
32
CouchDB
All
8
Experiences
Pros
5
Cons
2
Specs
Top
Pro
Works well between physical network partitions
CouchDB works very well even when the network is physically partitioned
See More
Top
Con
Can only achieve consistency through replication and verification
Since CouchDB is considered an AP (Available, Partition-Tolerant database management system), it is not really consistent (not all clients can have the same view of the data consistently) and the only way to achieve some "eventual consistency" is through replication and verification of data.
See More
Top
Pro
Available
CouchDB is considered an available DMS according to the ACP theory of database management. As such it allows every client to always read and write
See More
Top
Con
Uncertain future
After a very promising start, development began to drag after major supporters like Canonical, Selenium and CouchOne either shut down or moved to other tools. Development has begun to pick up again.
See More
Top
Pro
Useful for applications where versioning is important
CouchDB is mostly used in applications where a large amount of data needs to be accumulated and where data only changes rarely.
See More
Top
Pro
Changes API
You can use the RESTful API to listen for changes in your database, which is something most databases can't do. It makes it really easy for clients to keep their view of data up-to-date.
See More
Top
Pro
RESTful API
Since everything is stored as a JSON document and served over HTTP, it's perfectly suited for communicating with client-side javascript, with or without middleware.
See More
Specs
Platforms:
Windows, Linux, Mac, Android, BSD
Hide
See All
Experiences
Get it
here
54
22
MongoDB
All
9
Experiences
Pros
5
Cons
3
Specs
Top
Pro
Great speed
MongoDB queries can be very fast because the data is usually all in one place and can easily be retrieved in a single lookup. But this is true only when the data is truly a document. When it's trying to emulate a relational model it starts to become really slow because it may have to perform many independent queries to retrieve a single document.
See More
Top
Con
Reported to lose or corrupt data
MongoDB is famously known for leaking and losing data over time.
See More
Top
Pro
Perfect documentation and tutorials
Miles above other databases in educational resources.
See More
Top
Con
Document Stores may be not suited for relational data
MongoDB has no JOIN, all relations are supposed to be resolved client-size which entails additional requests to the server.
See More
Top
Pro
Uses JSON
As Node.js uses JavaScript there's no need to map the returned JSON data from MongoDB, as JavaScript is a superset of JSON. Essentially solving object-relational impedance mismatch by its very nature. Working with JSON is also easier overall as it more easily fits into how you would represent data on the client.
See More
Top
Con
Need many search features
Though it is possible to index and search text in documents in MongoDB 4.0 in multiple languages. The indexing and search is not as powerful as for example Elastic Search. For instance not being able to search for only parts of words.
See More
Top
Pro
Doesn't require a unified data structure
Mongo is very flexible in that it doesn't require a unified data structure across all objects. So it's rather easy to use.
See More
Top
Pro
Easy to scale
MongoDB has powerful sharding and scaling capabilities for when the data stored in the database gets so large that a single machine may not be able to store all of it. Sharding solves this problem through horizontal scaling. Mongo gives developers the ability to easily and painlessly add or remove as many machines as needed.
See More
Specs
Platforms:
Windows,Mac,Linux
JSON?:
true
Hide
See All
Experiences
Get it
here
130
54
Cassandra
All
4
Experiences
Pros
2
Cons
2
Top
Pro
Highly scalable
Cassandra is very scalable and achieves the highest throughput for the maximum number of nodes compared to other alternatives. Unfortunately this also brings rather high write and read latencies.
See More
Top
Con
Not for newbies
If your dataset is in order of gigabytes then maybe consider a toy database, not a serious one like Cassandra.
See More
Top
Pro
Familiar to developers used to SQL
The query language that Cassandra uses (CQL) is similar to SQL even though it's a NoSQL database.
See More
Top
Con
No JOINS
Cassandra has no support for JOINS.
See More
Hide
Get it
here
8
0
SQLite
All
11
Experiences
Pros
8
Cons
2
Specs
Top
Con
No multi user
Lacks multi-user capabilities, see SQLite vs. MySQL vs. PostgreSQL: A Comparison of Relational Databases. Also see: Appropriate Uses For SQLite.
See More
Top
Pro
Small
SQLite is also only 350KiB in size.
See More
Top
Con
Some SQL features are missing
SQLite is made to be extremely lightweight and portable, but it still uses SQL. However, some SQL features such as RIGHT OUTER JOIN and FOR EACH STATEMENT are missing.
See More
Top
Pro
Great language support
SQLite has bindings for a large number of programming languages, including BASIC, Delphi, C, C#, C++, Clipper//Harbour, Common Lisp, Curl, D, Free Pascal, Haskell, Java, JavaScript, Livecode, Lua, newLisp, Objective-C (on OS X and iOS), OCaml, Perl, PHP, Pike, PureBasic, Python, R, REALbasic, REBOL, Ruby, Scheme, Smalltalk, Tcl, Visual Basic.
See More
Top
Pro
Self-contained
SQLite is largely self-contained. It requires very minimal support from external libraries or from the operating system.
See More
Top
Pro
Portable
An SQLite database is a single ordinary disk file that can be located anywhere in the directory hierarchy. It works by sending requests to a single file where all the data is kept instead of communicating with a hosted database which gives access to an interface by making use of sockets and ports. The file format used is also cross-platform, so can easily be migrated to various machines. This makes SQLite extremely portable throughout different applications, all that's needed to transfer the whole database is to make a copy of the file.
See More
Top
Pro
Great for testing and first stages of development 
Because of it's ability to scale and with the portability that a single-file database gives you without losing much of the power and features that SQL gives developers, it's a great choice for testing applications and for the early stages of development when the workload and the data that needs to be stored is not that large.
See More
Top
Pro
Not unnecessarily fiddly
See More
Top
Pro
Reliable
With less complication, there is less to go wrong.
See More
Top
Pro
Zero configuration
There is literally no configuration required to get SQL lite up and running. This is mainly due to SQLite being serverless, there is no separate server process to install, setup, configure, initialize, manage, and troubleshoot.
See More
Specs
Platforms:
Windows, Linux, Mac, Android, IPhone
Technology:
C
Hide
See All
Experiences
Free
185
41
Oracle Database
All
10
Experiences
Pros
7
Cons
3
Top
Pro
World wide technical support
Oracle is a large company with specialists in a lot of countries. It's very easy to find consultants and any kind of help with Oracle.
See More
Top
Con
Proprietary
See More
Top
Pro
Useful features for daily workflow
Some of the most important features are the partitioning option, active data guard, and security options. All of these are very useful for daily workflow.
See More
Top
Con
Terrible company reputation
Oracle is very (in)famous for being involved in a number of controversies. Some of them have ended up in lawsuits with other tech companies because of license disputes. The latest one is a lawsuit against Google for Google's implementation of JAVA in their Android ecosystem.
See More
Top
Pro
Stable
See More
Top
Con
Ghost data
To work around ghost data you can after encrypting something, manually move everything out of the old table space and then shred those data files. To be able to get rid of ghost data automatically would be great.
See More
Top
Pro
Secure
See More
Top
Pro
Scalable
See More
Top
Pro
Reduced downtime during upgrades
Oracle Database has parallel upgrading for high available applications. Updates are made in parallel without keeping the database down.
See More
Top
Pro
High performance parallel quesries
Oracle Database has introduced concurrent execution of union branches, which means that one set of parallel servers will execute one branch, a second set will execute another branch and so on. Instead of the old system where each branch executed one after the other.
See More
Hide
See All
Experiences
Get it
here
36
13
Couchbase
All
9
Experiences
Pros
6
Cons
3
Top
Con
Vendor lock-in
See More
Top
Pro
Open source
Couchbase and Couchbase Mobile are open source and released under the Apache License.
See More
Top
Con
No model mapper for Android
Couchbase does not have a model mapper for Android built-in and out of the box, instead you will have to write your own from scratch.
See More
Top
Pro
Easy to implement N1QL queries
See More
Top
Con
Not Compatible with couchdb
Since version 2 the sync-protocol is no longer compatible with couchdb. This makes couchbase nearly worthless
See More
Top
Pro
Ability to run ad-hoc SQL like queries on realtime big data
Couchbase N1QL allows native SQL processing over JSON data with high performance indexing for low latency queries at scale.
See More
Top
Pro
Easy sync protocol to mobile devices
The minimal code needed to pull data down to a device
See More
Top
Pro
Available on Windows, Linux & macOS
See More
Top
Pro
Ability to make predefined fast queries
With Couchbase you can make "Views" of data, which are practically predefined queries which are fetched with an O(1) algorithm.
See More
Hide
See All
Experiences
Free / paid
56
45
MariaDB
All
4
Experiences
Pros
3
Specs
Top
Pro
Truly open development community
All development decisions for MariaDB can be reviewed and debated on a public mailing list or in the public bug tracker. Contributing to MariaDB is easy and the patch flow is fully transparent and public. But it's not all about the code contribution either - MariaDB also has very active documentation efforts and other related things that help developers in their day-to-day database administration.
See More
Top
Pro
More cutting edge features
e.g. GIS since 5.3
See More
Top
Pro
Dynamic column support
MariaDB has dynamic column support which allows for some NoSQL type functionality. So one database interface can provide both SQL and NoSQL for different software development needs.
See More
Specs
Platforms:
Windows, Linux, macOS, BSD
Technology:
C, C++, Perl, Bash
Hide
Get it
here
62
19
Redis
All
4
Experiences
Pros
4
Top
Pro
Redis is written in ANSI C and therefore doesn't have a VM
See More
Top
Pro
Good support
Redis has great docs, an active mailing list, and a github community.
See More
Top
Pro
Redis uses the BSD license
This means that it is able to be used in a commercial product if one wants.
See More
Top
Pro
There are numerous client libraries and frameworks to make redis more powerful
For Node.JS for example you can get something similar to what Parse.com was offering by using Node ORM.
See More
Hide
Get it
here
59
20
ConcourseDB
All
4
Experiences
Pros
3
Cons
1
Top
Con
Not very popular
Since ConcourseDB is not a very popular solution among developers, it may be hard to find libraries or SDKs to easily integrate it into any platform with which you are developing.
See More
Top
Pro
Built-in version control
Concourse tracks versions of your data by default. This way you can easily edit data without being afraid of losing anything since Concourse can easily revert to a previous state.
See More
Top
Pro
Fully ACID compliant
ConcourseDB is known to have a very holistic approach to robustness and data integrity which is reflected by it being fully ACID compliant. ConcourseDB has always been strict about making sure data is valid before allowing it into the database, and there is no way for a client to bypass those checks.
See More
Top
Pro
Can easily query data from any point in the past
Because of its powerful version control capabilities, Concourse can easily and painlessly query and get data from any point in the past.
See More
Hide
Get it
here
4
2
Cloudant
All
5
Experiences
Pros
4
Cons
1
Top
Pro
Can replicate the database across several hosts
You can choose to host your database on a single cloud provider or you can replicate it over several different providers.
See More
Top
Con
Can only achieve consistency through replication and verification
Since CouchDB is considered an AP (Available, Partition-Tolerant database management system), it is not really consistent (not all clients can have the same view of the data consistently) and the only way to achieve some "eventual consistency" is through replication and verification of data.
See More
Top
Pro
Runs on both bare-metal and virtual machine
Users can choose whether their database instance will run on bare-metal or a virtual machine
See More
Top
Pro
Crash friendly
The database behind Cloudant, CouchDB uses an append-only file for it's data. To restore already used up space, a compaction must happen. When this happens is up to the database maintainer.
See More
Top
Pro
Cloud agnostic
Cloudant hosts databases with a lot of different cloud hosting providers including Amazon, Rackspace, SoftLayer and Microsoft Azure. This way customers can choose where their database is hosted.
See More
Hide
Get it
here
8
0
MarkLogic
All
6
Experiences
Pros
4
Cons
2
Top
Pro
High performance graph database
While known as a document-oriented noSQL database, MarkLogic also provides a standards-compliant triple store that can be used to enrich document-shaped data with semantic links.
See More
Top
Con
Lack of experts
MarkLogic is not as popular as some of it's peers, and even though it is highly standards-based, the pool of talent that is well-versed in the underlying technology is small compared with some competing platforms (e.g, Oracle, IBM, Apache).
See More
Top
Pro
Enterprise strength security and transactions
The two fatal flaws of many open source solutions is lack of integrated security at the element level and full ACID transaction support. MarkLogic has both and is trusted with some of the worlds most sensitive data. It is the engine that powers healthcare.gov, which despite some early problems (not caused by MarkLogic) is an amazing technological achievement.
See More
Top
Con
Enterprise software is not open source and can get expensive. Not for casual projects.
MarkLogic can be downloaded and implemented in development environments for free. However, for production use, it is priced for enterprises, not startups with tight budgets. Open source requires a lot more elbow grease to do the same thing.
See More
Top
Pro
Multi-model database
MarkLogic supports text, documents, key-value/tuple, graphs, tables and object models that don't require extensive data-modeling and normalization that is part of the lifecycle process of relational database management systems. For sites similar to LinkedIn, Facebook, IMDB and even search engines, MarkLogic provides a unique set of features that are all in one box.
See More
Top
Pro
No ETL Required
MarkLogic can store all your enterprise data in it's original format without needing to know a schema in advanced. You can shove pretty much any structured or unstructured data directly into MarkLogic, and it will automatically index everything and make it available for future processing. Of course it is fully schema aware and will apply and enforce schema constraints when available, but the tedious normalization that is required for relational databases is not necessary.
See More
Hide
Paid
2
0
Orchestrate
All
7
Experiences
Pros
5
Cons
2
Top
Pro
Effortless/Automatic Scaling
Orchestrate was built for scale. Orchestrate is a full-fledged distributed data system, provided as a multi-tenant service. There is no need to manage finite server resources like disk space, CPU, or memory
See More
Top
Con
Data are not on your server
Since it's a DBaaS, your data are completely on their server. It cannot be run on your server. Backup is handled by them as well, which may be good or not depending on your needs.
See More
Top
Pro
Already set up for you
Orchestrate is a Database-as-a-Service, so there is no downloading, installation, or any other administration. It also makes configuration management and deployment easy.
See More
Top
Con
Not Open Source
Orchestrate is not an open source solution.
See More
Top
Pro
Great Node.js support
Orchestrate.js is a first class client for Node.js applications
See More
Top
Pro
Fault Tolerance Baked In
As a DBaaS, Orchestrate manages replicas and sharding across multiple machines. Additionally, daily backups are managed by the company.
See More
Top
Pro
Multiple Query types at Low Latencies
No other database provides Full-Text-Search, Time-Series, Graph, and Key/Value APIs. Moreover, as a DBaaS, the queries are pre-optimized for low latencies. Consistently under 10ms for any query.
See More
Hide
See All
Experiences
Get it
here
9
2
Apache Cassandra
All
5
Experiences
Pros
4
Cons
1
Top
Con
No JOINS
Cassandra has no support for JOINS.
See More
Top
Pro
Highly available cluster
Once setup database is set up, it becomes highly available without any downtime.
See More
Top
Pro
Highly scalable
Cassandra is very scalable and achieves the highest throughput for the maximum number of nodes compared to other alternatives. Unfortunately this also brings rather high write and read latencies.
See More
Top
Pro
Familiar to developers used to SQL
The query language that Cassandra uses (CQL) is similar to SQL even though it's a NoSQL database.
See More
Top
Pro
Rapid writing and lightning-fast reading
After measuring the read/write performance values on one server, you can simply calculate how many more servers you should add to the cluster to reach the required performance levels, and scale easily.
See More
Hide
Get it
here
13
5
SQL Server Express
All
7
Experiences
Pros
4
Cons
2
Specs
Top
Con
Proprietary
See More
Top
Pro
Rich developer tools
SQL Server Express has deep integration with Visual Studio, Visual Web Developer and SQL Server Management allowing for ease-of-use and rich table and query designers. It may be the best choice for someone who develops in the Microsoft environment.
See More
Top
Con
Hardware limitations
Maximum number of cores: 4 Maximum memory utilized per instance: 1GB Maximum size: 10GB This hardware could be limiting with some high profile apps and sites.
See More
Top
Pro
Easily manage SQL Server instances
"Manage SQL Server Express databases with SQL Server Management Studio Express. Connect to local SQL Server Express databases and manage objects with full Object Explorer integration. Write, execute, and test queries by using visual query plans, and access management and maintenance options."
See More
Top
Pro
Free
With a variety of versions to choose from the SQL Server Express version is free of charge. It is capable of upgrading to higher tiers, but that requires a fee.
See More
Top
Pro
Easy backup and restore
Can be deployed to all editions of SQL Server and Microsoft Azure SQL Database
See More
Specs
Platforms:
Windows, Linux, Docker
Hide
See All
Experiences
Get it
here
32
12
DynamoDB
All
6
Experiences
Pros
4
Cons
2
Top
Pro
Free tier
DynamoDB offers a free tier which allows up to 40 million database operations a month for free.
See More
Top
Con
No specific features for Event Sourcing
DynamoDB is just a general purpose NoSQL database; hence, there are no features specific to the domain of Event Sourcing, such as event ordering or projections. As a developer, you will need to decide how to implement these.
See More
Top
Pro
Trigger tasks (AWS Lambda) on write
When a new record is written, it can trigger one or many AWS Lambda functions. With Lambda functions in Java, JavaScript, and Python and the other con of "Easy integration with other Amazon services", Lambda functions may be all you need to process the events. This is particularly useful for creating projections (often as other DynamoDB tables) and other read models in a CQRS pattern.
See More
Top
Con
Poor documentation
In true AWS fashion, the documentation for DynamoDB is not top notch. While the learning curve is generally very soft and it's not hard to learn, you need to have at least some experience with cloud and database management to be able to start using DynamoDB and understand the documentation.
See More
Top
Pro
High uptime
Data hosted on DynamoDB is automatically replicated across multiple AWS availability zones, this way the data is protected from any malfunction that may cause loss and it also ensures high uptime.
See More
Top
Pro
Easy integration with other Amazon services
Since it's part of AWS, like with other services that Amazon provides, it's very easy to integrate DynamoDB with any other AWS service that you may be using.
See More
Hide
Get it
here
4
3
Built By the Slant team
Find the best product instantly.
4.7 star rating
Add to Chrome
Add to Edge
Add to Firefox
Add to Opera
Add to Brave
Add to Safari
Try it now - it's free
{}
undefined
url next
price drop