From 7c05a60479bacc7acbf6f704285a4ab2981ba02b Mon Sep 17 00:00:00 2001 From: John Christopher Anderson Date: Mon, 4 May 2009 19:59:39 +0000 Subject: Use batch=ok query param for document PUT and POST to defer index updates until a threshold of documents (or amount of time) has been passed. This option returns a 202 Accepted response instead of a 201 Created, so do not use it for applications which require all data to be saved safely to disk. It is ideal for applications like logging where losing some events in a crash will be ok. git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@771418 13f79535-47bb-0310-9956-ffa450edef68 --- src/couchdb/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/couchdb/Makefile.am') diff --git a/src/couchdb/Makefile.am b/src/couchdb/Makefile.am index 8b782221..7105300b 100644 --- a/src/couchdb/Makefile.am +++ b/src/couchdb/Makefile.am @@ -41,6 +41,8 @@ CLEANFILES = $(compiled_files) $(doc_base) source_files = \ couch_btree.erl \ + couch_batch_save.erl \ + couch_batch_save_sup.erl \ couch_config.erl \ couch_config_writer.erl \ couch_db.erl \ @@ -83,6 +85,8 @@ EXTRA_DIST = $(source_files) couch_db.hrl couch_stats.hrl compiled_files = \ couch.app \ couch_btree.beam \ + couch_batch_save.beam \ + couch_batch_save_sup.beam \ couch_config.beam \ couch_config_writer.beam \ couch_db.beam \ -- cgit v1.2.3