Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 1E076200D46 for ; Sun, 26 Nov 2017 09:31:44 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 1C803160BFF; Sun, 26 Nov 2017 08:31:44 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 614B4160BFA for ; Sun, 26 Nov 2017 09:31:43 +0100 (CET) Received: (qmail 83982 invoked by uid 500); 26 Nov 2017 08:31:42 -0000 Mailing-List: contact users-help@wicket.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@wicket.apache.org Delivered-To: mailing list users@wicket.apache.org Received: (qmail 83971 invoked by uid 99); 26 Nov 2017 08:31:41 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 Nov 2017 08:31:41 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 2A1311805E0 for ; Sun, 26 Nov 2017 08:31:41 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -0.002 X-Spam-Level: X-Spam-Status: No, score=-0.002 tagged_above=-999 required=6.31 tests=[SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id o9VmyXtDW12q for ; Sun, 26 Nov 2017 08:31:40 +0000 (UTC) Received: from saltarella.com.au (saltarella.com.au [94.76.202.148]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTPS id E48EC5FBD2 for ; Sun, 26 Nov 2017 08:31:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by saltarella.com.au (Postfix) with ESMTP id 2FC02149ED for ; Sun, 26 Nov 2017 19:31:33 +1100 (AEDT) X-Virus-Scanned: Debian amavisd-new at saltaire.com.au Received: from saltarella.com.au ([127.0.0.1]) by localhost (saltaire.com.au [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id q5cjq_7INECA for ; Sun, 26 Nov 2017 19:31:31 +1100 (AEDT) Received: from 192-168-1-107.tpgi.com.au (14-202-218-211.tpgi.com.au [14.202.218.211]) (Authenticated sender: gregjohnson@saltaire.com.au) by saltarella.com.au (Postfix) with ESMTPSA id 9AA0414997 for ; Sun, 26 Nov 2017 19:31:30 +1100 (AEDT) From: Greg Johnson Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Mac OS X Mail 11.1 \(3445.4.7\)) Subject: 8.0.0-M8 StoreSettings.setAsynchronous(false) appears not to be honoured Message-Id: <6DE8AC3F-4CAB-4AD1-95DF-0F66DA101D94@saltaire.com.au> Date: Sun, 26 Nov 2017 19:31:25 +1100 To: users@wicket.apache.org X-Mailer: Apple Mail (2.3445.4.7) archived-at: Sun, 26 Nov 2017 08:31:44 -0000 Setting 8.0.0-M8 StoreSettings.setAsynchronous(false) does not prevent = pageStore from being wrapped with AsynchronousPageStore - am I missing = something? Thanks, regards, Greg Johnson DefaultPageManagerProvider.java: if (dataStore.canBeAsynchronous()) { int capacity =3D = storeSettings.getAsynchronousQueueCapacity(); dataStore =3D new AsynchronousDataStore(dataStore, = capacity); pageStore =3D newPageStore(dataStore); if (pageStore.canBeAsynchronous()) { pageStore =3D new AsynchronousPageStore(pageStore, = capacity); } } else { pageStore =3D newPageStore(dataStore); }= --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org For additional commands, e-mail: users-help@wicket.apache.org