-
Notifications
You must be signed in to change notification settings - Fork 139
/
index.html
171 lines (89 loc) · 4.86 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<title>CouchDB: The Definitive Guide</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<div class="stage home">
<h3>Deprecation Notice</h3>
<p>
<strong>
The contents of this guide are out of date. All relevant info has been updated and integrated into <a href="https://docs.couchdb.org">the official CouchDB documentation</a>. This page now only exists for archival and historic purposes.
</strong>
</p>
<hr />
<p>Three of CouchDB’s creators show you how to use this document-oriented database as a standalone application framework or with high-volume, distributed applications. With its simple model for storing, processing, and accessing data, CouchDB is ideal for web applications that handle huge amounts of loosely structured data. That alone would stretch the limits of a relational database, yet CouchDB offers an open source solution that’s reliable, scales easily, and responds quickly.
<p>CouchDB works with self-contained data that has loose or ad-hoc connections. It’s a model that fits many real-world items, such as contacts, invoices, and receipts, but you’ll discover that this database can easily handle data of any kind. With this book, you’ll learn how to work with CouchDB through its RESTful web interface, and become familiar with key features such as simple document CRUD (create, read, update, delete), advanced MapReduce, deployment tuning, and more.
</div>
<div class="editions">
<div class="span8">
<div class="edition_list">
<h2 class="span4">1st Edition</h2>
<div class="span8 last">
<p>Read it in…
<ul>
<li><a href="editions/1/en/index.html">English</a></li>
<li><a href="editions/1/de/index.html">Deutsch</a></li>
<li><a href="editions/1/fr/index.html">Français</a></li>
<li><a href="editions/1/es/index.html">Español</a></li>
</ul>
</div>
</div>
<div class="edition_list draft_li">
<h2 class="span4">Draft</h2>
<div class="span8 last">
<p>Read it or help working on it in…
<ul>
<li><a href="draft/index.html">English</a></li>
</ul>
</div>
</div>
</div>
<div class="span4 last">
<div class="info_bubble startpage">
<span></span>
<p>This edition of the book is a work in progress. Please <a href="http://github.com/oreilly/couchdb-guide/issues/">create a ticket</a> for any corrections or suggestions you may have.
</div>
</div>
</div>
<div class="inner">
<div class="content">
<h3>Reader Reviews</h3>
<blockquote>
<p>“This is a great book. Clean, clear writing with helpful examples.”
<p class="attribution">— Shelley Powers, author of Learning JavaScript</p>
</blockquote>
<blockquote>
<p>“This book is pure awesome.”
<p class="attribution">— Damien Katz, creator of CouchDB</p>
</blockquote>
<blockquote>
<p>“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.”
<p class="attribution">— Rob Drimmie, CouchDB developer</p>
</blockquote>
<blockquote>
<p>“Definitely one of the best tech books I’ve read in quite a while.”
<p class="attribution">— Russell Branca, Elephant Breeder</p>
</blockquote>
</div>
<div class="sidebar buy">
</div>
</div>
<div class="blocks">
<div class="span4">
<div class="inner">
<h3>Free License</h3>
<p>This book is licensed under a <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution</a> license. That means you’re free to share and distribute the book however you like. You are also free to remix and adapt the book. We only ask that you attribute the book to us properly.
</div>
</div>
<div class="span4">
<div class="inner">
<h3>Open Source</h3>
<p>All of the source code that goes into making this book is <a href="http://github.com/oreilly/couchdb-guide">available on Github</a>. That includes everything we used to publish as book on paper and on the Web. Get stuck in by creating tickets, forking the code, and making pull requests for your changes.
</div>
</div>
<div class="span4 last">
<div class="inner">
<h3>Many Languages</h3>
<p>We draft and publish the book in English, but that doesn’t mean the book should only be available to other English speakers. Help out the community by providing a translation of the book in your language. It’s really easy, <a href="http://github.com/oreilly/couchdb-guide/tree/gh-pages">here’s how you get started</a>.
</div>
</div>
</div>