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 4710B200C8E for ; Thu, 25 May 2017 02:30:00 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 44A05160BD0; Thu, 25 May 2017 00:30:00 +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 3CD83160BB6 for ; Thu, 25 May 2017 02:29:59 +0200 (CEST) Received: (qmail 41893 invoked by uid 500); 25 May 2017 00:29:58 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 41884 invoked by uid 99); 25 May 2017 00:29:58 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 May 2017 00:29:58 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id BC7E73A0611 for ; Thu, 25 May 2017 00:29:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1796120 - in /ignite/site/trunk: blogs.html features/datagrid.html features/sql.html index.html news.html Date: Thu, 25 May 2017 00:29:57 -0000 To: commits@ignite.apache.org From: dmagda@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170525002957.BC7E73A0611@svn01-us-west.apache.org> archived-at: Thu, 25 May 2017 00:30:00 -0000 Author: dmagda Date: Thu May 25 00:29:57 2017 New Revision: 1796120 URL: http://svn.apache.org/viewvc?rev=1796120&view=rev Log: updated the news page Modified: ignite/site/trunk/blogs.html ignite/site/trunk/features/datagrid.html ignite/site/trunk/features/sql.html ignite/site/trunk/index.html ignite/site/trunk/news.html Modified: ignite/site/trunk/blogs.html URL: http://svn.apache.org/viewvc/ignite/site/trunk/blogs.html?rev=1796120&r1=1796119&r2=1796120&view=diff ============================================================================== Binary files - no diff available. Modified: ignite/site/trunk/features/datagrid.html URL: http://svn.apache.org/viewvc/ignite/site/trunk/features/datagrid.html?rev=1796120&r1=1796119&r2=1796120&view=diff ============================================================================== --- ignite/site/trunk/features/datagrid.html (original) +++ ignite/site/trunk/features/datagrid.html Thu May 25 00:29:57 2017 @@ -343,43 +343,10 @@ under the License. - Off-Heap and On-Heap Memory + Page Memory

- Ignite supports 2 modes for caching data in-memory: - off-heap and - on-heap. - Off-Heap memory allows your cache to overcome lengthy JVM Garbage Collection (GC) pauses - when working with large heap sizes by caching data outside of main Java Heap space, - but still in RAM. -

- - - - - Off-Heap Indexes - -

- Whenever off-heap memory is configured, Ignite will also store query indexes off-heap - as well. This means that indexes will not take any portion of on-heap memory. -

- - - - - Tiered Storage - -

- As data gets colder (not accessed) Ignite will optionally migrate it - from On-Heap memory to Off-Heap memory, and from Off-Heap memory to Swap (disk) storage. -

-

- Whenever some data is accessed, it will immediately be propagated to the top tier - pushing some other colder data down the next memory tier. + Apache Ignite Page Memory is a manageable off-heap based memory architecture that is split into pages of fixed size. Ignite stores data in off-heap memory with an option to store data on-heap.