You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2009/05/20 17:24:36 UTC

svn commit: r776732 - /couchdb/branches/tail_header/src/couchdb/couch_file.erl

Author: damien
Date: Wed May 20 15:24:32 2009
New Revision: 776732

URL: http://svn.apache.org/viewvc?rev=776732&view=rev
Log:
Fix for performance degradation, disabling compressing erlang terms for all terms stored in the database.

Modified:
    couchdb/branches/tail_header/src/couchdb/couch_file.erl

Modified: couchdb/branches/tail_header/src/couchdb/couch_file.erl
URL: http://svn.apache.org/viewvc/couchdb/branches/tail_header/src/couchdb/couch_file.erl?rev=776732&r1=776731&r2=776732&view=diff
==============================================================================
--- couchdb/branches/tail_header/src/couchdb/couch_file.erl (original)
+++ couchdb/branches/tail_header/src/couchdb/couch_file.erl Wed May 20 15:24:32 2009
@@ -61,7 +61,7 @@
 %%----------------------------------------------------------------------
 
 append_term(Fd, Term) ->
-    append_binary(Fd, term_to_binary(Term, [compressed])).
+    append_binary(Fd, term_to_binary(Term)).
 
 
 %%----------------------------------------------------------------------