diff options
author | Filipe David Borba Manana <fdmanana@apache.org> | 2011-05-02 13:28:20 +0000 |
---|---|---|
committer | Filipe David Borba Manana <fdmanana@apache.org> | 2011-05-02 13:28:20 +0000 |
commit | e2e8554d4de18c4ad3765fb105491c77997aff39 (patch) | |
tree | 006971c29510d531ee9b0d3bb88b7062500f8f3e /utils | |
parent | 5ee419e6fb5323d1dfdcd447670b36b5726a9db0 (diff) | |
download | couchdb-e2e8554d4de18c4ad3765fb105491c77997aff39.tar.gz |
Add configurable file compression (snappy, deflate or none)
Not only this makes database and view index files smaller it also increases
database read/write performance, view index generation (specially for large
documents and/or documents with nested JSON structures) and compaction.
Closes COUCHDB-1120.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@1098558 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'utils')
-rw-r--r-- | utils/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/Makefile.am b/utils/Makefile.am index aeb9a1eb7..b3452267b 100644 --- a/utils/Makefile.am +++ b/utils/Makefile.am @@ -28,7 +28,8 @@ run: ../bin/couchdb.tpl -pa $(abs_top_builddir)\/src\/ejson \ -pa $(abs_top_builddir)\/src\/erlang-oauth \ -pa $(abs_top_builddir)\/src\/ibrowse \ - -pa $(abs_top_builddir)\/src\/mochiweb|g" \ + -pa $(abs_top_builddir)\/src\/mochiweb \ + -pa $(abs_top_builddir)\/src\/snappy|g" \ -e "s|%localconfdir%|$(abs_top_builddir)/etc/couchdb|g" \ -e "s|%localstatelogdir%|$(abs_top_builddir)/tmp/log|g" \ -e "s|%localstatelibdir%|$(abs_top_builddir)/tmp/lib|g" \ |