-
Notifications
You must be signed in to change notification settings - Fork 1
Couchbase
Couchbase is a bit different from the databases I am experienced with. I found it a bit confusing that I had to open the web UI and setup the database before I could start using it. I did not find a way to make the initial configuration using env variables or such.
The query API in node seems straightforward and reminds me of mongoDB. Couchbase also has a SQL-like DSL called N1QL.
Yes.
Documents can contain nested structures. This allows developers to express many-to-many relationships without requiring a reference or junction table; and is naturally expressive of hierarchical data.
There are SDKs for all the major languages as well as mobile SDKs and connectors for big data applications and ODBC/JDBC drivers.
Available as docker image for self-hosting and managed service in the cloud.
The Couchbase data model is based on JSON, which provides a simple, lightweight, human-readable notation. It supports basic data types, such as numbers and strings; and complex types, such as embedded documents and arrays. JSON provides rapid serialization and deserialization; is native to JavaScript; and constitutes the most common REST API return-type. Consequently, JSON is extremely convenient for web-application programming.
- Docker image has a web UI for administration
- Managed service available
- Many SDKs and connectors/drivers
- Needs a few clicks in the web UI before you can start using it locally
- A bit of a learning curve to get started with