Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2ADBEEBC3 for ; Wed, 13 Feb 2013 12:19:56 +0000 (UTC) Received: (qmail 98077 invoked by uid 500); 13 Feb 2013 12:19:56 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 97964 invoked by uid 500); 13 Feb 2013 12:19:54 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 97926 invoked by uid 99); 13 Feb 2013 12:19:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Feb 2013 12:19:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Feb 2013 12:19:50 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 304EF2388847 for ; Wed, 13 Feb 2013 12:19:30 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r850472 - in /websites/production/camel/content: cache/main.pageCache stream-caching.html Date: Wed, 13 Feb 2013 12:19:30 -0000 To: commits@camel.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130213121930.304EF2388847@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: buildbot Date: Wed Feb 13 12:19:29 2013 New Revision: 850472 Log: Production update by buildbot for camel Modified: websites/production/camel/content/cache/main.pageCache websites/production/camel/content/stream-caching.html Modified: websites/production/camel/content/cache/main.pageCache ============================================================================== Binary files - no diff available. Modified: websites/production/camel/content/stream-caching.html ============================================================================== --- websites/production/camel/content/stream-caching.html (original) +++ websites/production/camel/content/stream-caching.html Wed Feb 13 12:19:29 2013 @@ -193,7 +193,7 @@ from("jbi:servi

When stream cache is enabled it will by default spool big streams to files instead of keeping them in memory. The default threshold is 64kb but you can configure it with the following properties:

-
Property Default Description
CamelCachedOutputStreamBufferSize 2kb Camel 2.9.4, 2.10.2, 2.11.0: Size in bytes of the buffer used in the stream.
CamelCachedOutputStreamThreshold 64kb Size in bytes when the stream should be spooled to disk instead of keeping in memory. Use a value of 0 or negative to disable it all together so streams is always kept in memory regardless of their size.
CamelCachedOutputStreamOutputDirectory java.io.tmpdir Base directory where temporary files for spooled streams should be stored.
+
Property Default Description
CamelCachedOutputStreamBufferSize 2kb Camel 2.9.4, 2.10.2, 2.11.0: Size in bytes of the buffer used in the stream.
CamelCachedOutputStreamThreshold 64kb Size in bytes when the stream should be spooled to disk instead of keeping in memory. Use a value of 0 or negative to disable it all together so streams is always kept in memory regardless of their size.
CamelCachedOutputStreamOutputDirectory java.io.tmpdir Base directory where temporary files for spooled streams should be stored.
CamelCachedOutputStreamCipherTransformation null Camel 2.11.0: If set, the temporary files are encrypted using the specified cipher transformation.
@@ -204,6 +204,8 @@ from("jbi:servi context.getProperties().put(CachedOutputStream.TEMP_DIR, "/tmp/cachedir"); context.getProperties().put(CachedOutputStream.THRESHOLD, "1024"); context.getProperties().put(CachedOutputStream.BUFFER_SIZE, "4096"); +// to enable encryption using RC4 +// context.getProperties().put(CachedOutputStream.CIPHER_TRANSFORMATION, "RC4");