TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

CouchDB: The Definitive Guide

65 pointsby pelleover 14 years ago

6 comments

mark_l_watsonover 14 years ago
Good job of putting the book on the web. I bought the PDF version a long time ago and it was useful in getting me up to speed. Although I use MongoDB for most of my work and not CouchDB, I spend a good deal of play time with CouchDB. Also, CouchDB looks to be hackable at the implementation level: I saw a good article on hacking the Erlang source to customize CouchDB.
teiloover 14 years ago
What a gorgeous way to put a book on the web!
评论 #1629597 未加载
ratsbaneover 14 years ago
The CouchDB group is hosting CouchCamp September 8-10 in Petaluma, CA: <a href="http://www.couch.io/couchcamp" rel="nofollow">http://www.couch.io/couchcamp</a> It's quite cheap ($600, including room and meals) and should be a great chance to learn more about CouchDB from the original sources.<p>I've not signed up for it (yet) myself; I'm concerned about a schedule conflict, but I may go ahead and do it anyway.<p>Even if you don't plan on using CouchDB directly, it's worth a look just to see how neatly they've implemented RESTful APIs.
rdrimmieover 14 years ago
I'm a big fan of this book. It's one of the rare technical books that is so well-written that it's a great read regardless of whether or not you're actually trying to use the technology.
lzwover 14 years ago
One thing I wonder about CouchDB is whether writing scales.<p>Assuming you have a cluster of couchdb nodes. They all replicate, so you can spread reads and writes over the cluster. As you add nodes, read performance goes up. Initial write performance should as well.<p>But when you write to node N, then that data needs to be written to nodes 0-(N-1) as well. So every write goes to every node (thru replication). Since writes on CouchDB are syncronous (Eg: only one write at a time) then there is a fixed total write bandwidth on each node. Since a write on any node needs to be replicated, then, assuming the cluster is using identical machines, the total write speed of the cluster would be the same as the write speed of a single node, right?<p>This is probably not a problem for most cases as reads outnumber writes for web businesses. But it seems this is an area where couchDB isn't scalable.<p>My assessment is based on the perception that writing data coming via replication is exactly as expensive as writing data coming from the web. Replicated data goes thru the filters, and replicated data has its views recalculated as well.
评论 #1627590 未加载
评论 #1627435 未加载
lzwover 14 years ago
They must have just pushed this, because I was looking at it yesterday and it was the old tired and broken (by comparison) version of the page.<p>Has the edition changed? I'm a bit confused. I'm reading the O'Reilly eBook and it seems like what I'm reading is a draft. There are chapters seemingly missing (for instance, they described Map well enough but skipped reduce and went right into talking about Sofa without ever introducing Sofa)<p>However, I am reading it cover to cover and it is pretty thorough and not a bad book.<p>I just wonder which version I have and how it compares to the two on the new webpage.<p>Maybe we need a standard for book versions. Rather than just "Editions" something of a smaller increment. Like Edition/Revision.