Grow your community and let your products shine!
Register | Login

Company Overview

HTTP + JSON document database with Map Reduce views and peer-based replication.

Tags:

Company Information

Platforms

Pricing

Categories

Features & Specs

  • Schema-Free Design

    CouchDB is a NoSQL database with a schema-free design, which means it allows for flexible and dynamic data modeling. This is particularly useful for applications where requirements may change over time or where data is highly variable.

  • Replication

    CouchDB provides robust replication capabilities that enable data to be synchronized across multiple servers. This is useful for scalability, high availability, and disaster recovery.

  • RESTful HTTP API

    CouchDB uses a RESTful HTTP API for database operations, making it easy to interact with using standard web technologies. This simplifies development and integration with web applications.

  • Multi-Master Replication

    CouchDB supports multi-master replication, allowing for concurrent writes on different nodes without conflict. This feature is valuable for distributed systems and offline-first applications.

  • Eventual Consistency

    CouchDB ensures eventual consistency, which allows the database to be highly available and partition tolerant. This is beneficial for applications that need to remain operational even under network partitions.

  • MapReduce Queries

    CouchDB supports MapReduce functions for creating views and indexes, enabling powerful data querying and aggregation. This makes it easier to perform complex data analysis within the database.

  • Built-in Administration Interface

    CouchDB comes with a built-in web-based administration interface called Fauxton, making it easy to manage databases, documents, and replication.

  • Videos

    External Sources including reviews & comparisons

    Social Recommendations


    • MongoDB takes a swing at PostgreSQL after claiming wins against rival

      If you like the document db idea there are a lot of choices, especially https://arangodb.com/ which I think gets little attention because people who use it see it as a secret weapon. Too bad about the license though. Also https://couchdb.apache.org/ and https://developer.marklogic.com/.

      – Source: Hacker News
      /
      23 days ago


    • List of 45 databases in the world

      CouchDB — Database that uses JSON to store data and JavaScript for MapReduce queries.

      – Source: dev.to
      /
      2 months ago


    • Which Database is Perfect for You? A Comprehensive Guide to MySQL, PostgreSQL, NoSQL, and More

      CouchDB is a NoSQL database that stores data in JSON and uses JavaScript as the query language. It prioritizes easy replication and availability for distributed databases.

      – Source: dev.to
      /
      3 months ago


    • What Happens When You Put a Database in the Browser?

      Another interesting option is PouchDB[0], which is a Javascript implementation of the CouchDB[1] synchronization API. It allows you to acheive eventual consistency between a client with intermittent connectivity, and a backend database. [0] https://pouchdb.com/ [1] https://couchdb.apache.org/.

      – Source: Hacker News
      /
      3 months ago


    • Creating an offline node.js app, but what can I use as a database?

      CouchDB is a json based database for simple projects. The fork pouchdb offers lots of support for offline.

      Source:
      over 1 year ago


    • How to run WebAssembly from your Rust Program

      Apache CouchDB belongs to the family of

      NoSQL databases. It is a document store with a strong focus on

      Replication and reliability. One of the most significant differences

      Between CouchDB and a relational database (besides the absence of tables

      And schemas) is how you query data. Relational databases allow their

      Users to execute arbitrary and dynamic queries via

      SQL. Each SQL query may look

      Completely…

      – Source: dev.to
      /
      over 1 year ago


    • Help need for Third Year Computer Science Project which is a dating website.

      For non-SQL-based databases, consider MongoDB, or CouchDB, which are very easy to get started with.

      Source:
      about 2 years ago


    • How would you implement online offline db sync?

      You can implement the sync algorithm from scratch, or you can use tools like CouchDB and turtleDB to help you.

      Source:
      over 2 years ago


    • Alternative to MongoDB?

      I’ve heard people recommend CouchDB, no personal expience though. It is also nosql, somewhat similar to mongo. The selling feature is easy scalability. I’m planning to take a weekend to try it out myself.
      Https://couchdb.apache.org/.

      Source:
      over 2 years ago


    • Ask HN: How do you handle global web scale?

      If you can change your DB, then Apache CouchDB[0] handles this out of the box. Otherwise consider something like Apace ShardingSphere[1]. [0] https://couchdb.apache.org [1] https://shardingsphere.apache.org.

      – Source: Hacker News
      /
      over 2 years ago


    • CouchDB clients in Javascript

      Apache CouchDB is an open source NoSQL document database that collects and stores data in JSON-based document formats. Since CouchDB makes use of HTTP protocol, therefore we can use any HTTP client to connect with CouchDB. However, there are some existing CouchDB client libraries that are very easy and convenience to use. Below I would like to share 3 libraries that I frequent use to connect with CouchDB.

      – Source: dev.to
      /
      almost 3 years ago


    • Jinja2 not formatting my text correctly. Any advice?

      ListItem(name=’CouchDB’, website=’https://couchdb.apache.org/’, category=’NoSQL :: Document Databases’, short_description=’Apache CouchDB is an open-source document-oriented NoSQL database, implemented in Erlang. CouchDB uses multiple formats and protocols to store, transfer, and process its data. It uses JSON to store data, JavaScript as its query language using MapReduce, and HTTP for an API.’).

      Source:
      almost 3 years ago


    • Query in Apache CouchDB: Views

      A short introduce about CouchDB first for those who don’t know. Apache CouchDB is an open-source document-oriented NoSQL database, implemented in Erlang. It is very easy to use as CouchDB makes use of the ubiquitous HTTP protocol and JSON data format. Do check out their Official Website for more detail. .

      – Source: dev.to
      /
      almost 3 years ago


    • Challenges with Offline First Framework

      So I am building a project using databases called CouchDB & PouchDB. I have talked them first here where PouchDB was giving me trouble, it turned out be me not knowing my javascript good enough. .

      – Source: dev.to
      /
      over 3 years ago


    • PouchDB.find is not a function

      I am using CouchDB & PouchDB for one of my projects.

      – Source: dev.to
      /
      over 3 years ago


    • Self hosted firebase real time database.

      Maybe you can try CouchDB alongside with PouchDB integration on client side? This page contains a comparison between them.

      Source:
      over 3 years ago


    • [Need Advice] Making a quiz maker website

      Personally, I prefer using CouchDB for server side storage and PouchDB.js on the client side because you can start making your app and storing your data with just PouchDB and run it entirely in your web browser.

      Source:
      over 3 years ago


    • CouchDB and C#. EFCore-like queries!

      Apache CouchDB is a distributed document database and its replication protocol is available from servers to mobile phones and web browsers.

      – Source: dev.to
      /
      over 3 years ago


    • Is a “headless” CMS what I’m looking for ?

      Maybe Apache CouchDB? It’s a NoSQL database where all records are JSON documents and has a built-in web interface called Fauxton (formerly Futon).

      Source:
      over 3 years ago


    • cannot get containers to communicate with each other with super minimal docker-compose with nodejs and postgresql

      So, in the above example… I’ve got a couchdb which is… well, a RESTful mongodb. Standard curl commands work to do the addition of documents. And… I wanted to put some documents in it as soon as it starts up.

      Source:
      over 3 years ago

    Similar Products

    AutoCAD mobile app, formerly AutoCAD 360 and AutoCAD WS, is a CAD viewer for viewing, creating, editing, and sharing AutoCAD drawings. Download a free AutoCAD mobile app trial for Windows 10, iOS, or Android.
    Web-based project collaboration tool.
    Bforartists is a fork of Blender.
    Cloud-based software application for consulting firms (and students) with all the tools required in...