CouchDB in Production

后端 未结 2 1993
醉梦人生
醉梦人生 2021-01-13 07:15

I have been using CouchDB on some prototype applications and it has been brilliant, very easy to use and extremely quick. I was wondering if anyone has been using it in prod

相关标签:
2条回答
  • 2021-01-13 07:54

    CouchDB ships in Ubuntu and is a fundamental component of the Ubuntu One service.

    0 讨论(0)
  • 2021-01-13 08:01

    I've used CouchDB for a few small in-house applications - it's been very stable and I've had no serious complaints. Setting that aside, a few small gripes -

    1) Databases can be synchronized, but not nodes. That is, if you have four servers and twenty databases, you have to specify each server, and each database to synchronize. A minor gripe, but I prefer less management to more.

    2) Since databases are append only, a database with a bunch of activity gets really big really quickly. Compacting fixes this, but isn't exactly fast, especially on big (e.g. 20 gigabytes) database. Scheduling compact for the weekends solved this, but doing that is probably less of an option for high availability applications.

    3) Javascript is the de facto view language. What is not well advertised is that since CouchDB is written in Erlang, it also supports Erlang views, which are faster as they are "native". For applications doing a lot of operations in views, Erlang probably makes more sense.

    Setting those minor issues aside, I'd wholeheartedly recommend it.

    0 讨论(0)
提交回复
热议问题