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 E4433200C1B for ; Tue, 14 Feb 2017 20:39:48 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id E2CDA160B89; Tue, 14 Feb 2017 19:39:48 +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 6371D160B76 for ; Tue, 14 Feb 2017 20:39:47 +0100 (CET) Received: (qmail 74323 invoked by uid 500); 14 Feb 2017 19:39:46 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 73836 invoked by uid 99); 14 Feb 2017 19:39:46 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Feb 2017 19:39:46 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id ED1CDE098A; Tue, 14 Feb 2017 19:39:45 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: abaker@apache.org To: commits@geode.apache.org Date: Tue, 14 Feb 2017 19:39:55 -0000 Message-Id: <27711d81e33a4cc9a153803affedc8d9@git.apache.org> In-Reply-To: <158ab04503fe4d86bd018fa4a2e277af@git.apache.org> References: <158ab04503fe4d86bd018fa4a2e277af@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [11/74] [abbrv] [partial] geode-native git commit: GEODE-1964: native client documentation (note: contains references to images in the geode-docs directories) archived-at: Tue, 14 Feb 2017 19:39:49 -0000 http://git-wip-us.apache.org/repos/asf/geode-native/blob/ff80a931/geode-docs/reference/topics/chapter_overview_cache_xml.html.md.erb ---------------------------------------------------------------------- diff --git a/geode-docs/reference/topics/chapter_overview_cache_xml.html.md.erb b/geode-docs/reference/topics/chapter_overview_cache_xml.html.md.erb deleted file mode 100644 index 02e54f1..0000000 --- a/geode-docs/reference/topics/chapter_overview_cache_xml.html.md.erb +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: cache.xml ---- - -Use the cache.xml file to set up general cache facilities and behavior and to create and initialize cached data regions. These sections document cache.xml requirements; provide hierarchical diagrams of `` and ` `elements; and describe the function of each element. - -**Note:** -You can configure most elements of the cache.xml file and apply it to your entire cluster by using the [gfsh](../../tools_modules/gfsh/chapter_overview.html) and [cluster configuration service](../../configuring/cluster_config/gfsh_persist.html). See [gfsh Limitations](../../configuring/cluster_config/gfsh_persist.html#concept_r22_hyw_bl__section_bn3_23p_y4) for a list of items you cannot configure in gfsh and must still configure in cache.xml. - -- **[cache.xml Quick Reference](../../reference/topics/elements_ref.html)** - - This section documents cache.xml file requirements and variables. It also points you to specific element sections for server, client, and WAN configuration. - -- **[<cache> Element Hierarchy](../../reference/topics/cache-elements-list.html)** - - This section shows the hierarchy of `` element sub-elements that you use to configure Geode caches and servers. - -- **[<cache> Element Reference](../../reference/topics/cache_xml.html#cache_xml_cache)** - - This section documents the `cache.xml` sub-elements used for Geode server configuration. All elements are sub-elements of the `` element. - -- **[<client-cache> Element Hierarchy](../../reference/topics/client-cache-elements-list.html)** - - This section shows the hierarchy of `` element sub-elements that you use to configure Geode caches and clients. - -- **[<client-cache> Element Reference](../../reference/topics/client-cache.html)** - - This section documents all `cache.xml` elements that you use to configure Geode clients. All elements are sub-elements of the `` element. - - http://git-wip-us.apache.org/repos/asf/geode-native/blob/ff80a931/geode-docs/reference/topics/chapter_overview_regionshortcuts.html.md.erb ---------------------------------------------------------------------- diff --git a/geode-docs/reference/topics/chapter_overview_regionshortcuts.html.md.erb b/geode-docs/reference/topics/chapter_overview_regionshortcuts.html.md.erb deleted file mode 100644 index dec958d..0000000 --- a/geode-docs/reference/topics/chapter_overview_regionshortcuts.html.md.erb +++ /dev/null @@ -1,90 +0,0 @@ ---- -title: Region Shortcuts ---- - -This topic describes the various region shortcuts you can use to configure Geode regions. - -Region shortcuts are groupings of pre-configured attributes that define the characteristics of a region. You can use a region shortcut as a starting point when configuring regions and you can add additional configurations to customize your application. To reference a region shortcut in a Geode `cache.xml` file, use the `refid` attribute of the `` element. For example: - -``` pre - -``` - -You can override the default values and add additional configurations within a `` element of the `cache.xml` file. For example, the following configuration overrides the local-max-memory setting and adds the recovery-delay attribute: - -``` pre - - - - - -``` - -You can also create your own, named region shortcuts for common custom configurations. See [Region Shortcuts and Custom Named Region Attributes](../../basic_config/data_regions/region_shortcuts.html). - -To configure a region using the gfsh command-line tool, specify the shortcut name with the `--type` argument. For example: - -``` pre -gfsh>create region --name=myRegion --type=PARTITION_REDUNDANT -``` - -**Note:** -If you change the cache.xml file that defines a region, you must restart the member before the changes take effect. - -For more information about configuring regions, see [Data Region Management](../../basic_config/data_regions/managing_data_regions.html#data_regions). - -For more information about using the various types of Geode regions and when to use them, see [Region Types](../../developing/region_options/region_types.html#region_types). - -- **[Region Shortcuts Quick Reference](../../reference/topics/region_shortcuts_table.html)** - - This section provides a quick reference for all region shortcuts. - -- **[LOCAL](../../reference/topics/region_shortcuts_reference.html#reference_w2h_3cd_lk)** - -- **[LOCAL\_HEAP\_LRU](../../reference/topics/region_shortcuts_reference.html#reference_wd5_lpy_lk)** - -- **[LOCAL\_OVERFLOW](../../reference/topics/region_shortcuts_reference.html#reference_adk_y4y_lk)** - -- **[LOCAL\_PERSISTENT](../../reference/topics/region_shortcuts_reference.html#reference_l5r_y4y_lk)** - -- **[LOCAL\_PERSISTENT\_OVERFLOW](../../reference/topics/region_shortcuts_reference.html#reference_a45_y4y_lk)** - -- **[PARTITION](../../reference/topics/region_shortcuts_reference.html#reference_ow5_4qy_lk)** - -- **[PARTITION\_HEAP\_LRU](../../reference/topics/region_shortcuts_reference.html#reference_twx_y4y_lk)** - -- **[PARTITION\_OVERFLOW](../../reference/topics/region_shortcuts_reference.html#reference_js1_z4y_lk)** - -- **[PARTITION\_PERSISTENT](../../reference/topics/region_shortcuts_reference.html#reference_d4k_jpy_lk)** - -- **[PARTITION\_PERSISTENT\_OVERFLOW](../../reference/topics/region_shortcuts_reference.html#reference_v5l_jpy_lk)** - -- **[PARTITION\_PROXY](../../reference/topics/region_shortcuts_reference.html#reference_v4m_jpy_lk)** - -- **[PARTITION\_PROXY\_REDUNDANT](../../reference/topics/region_shortcuts_reference.html#reference_c1n_jpy_lk)** - -- **[PARTITION\_REDUNDANT](../../reference/topics/region_shortcuts_reference.html#reference_shn_jpy_lk)** - -- **[PARTITION\_REDUNDANT\_HEAP\_LRU](../../reference/topics/region_shortcuts_reference.html#reference_m4n_jpy_lk)** - -- **[PARTITION\_REDUNDANT\_OVERFLOW](../../reference/topics/region_shortcuts_reference.html#reference_own_jpy_lk)** - -- **[PARTITION\_REDUNDANT\_PERSISTENT](../../reference/topics/region_shortcuts_reference.html#reference_bd4_jpy_lk)** - -- **[PARTITION\_REDUNDANT\_PERSISTENT\_OVERFLOW](../../reference/topics/region_shortcuts_reference.html#reference_xqq_tvc_lk)** - -- **[REPLICATE](../../reference/topics/region_shortcuts_reference.html#reference_wq4_jpy_lk)** - -- **[REPLICATE\_HEAP\_LRU](../../reference/topics/region_shortcuts_reference.html#reference_xx4_jpy_lk)** - -- **[REPLICATE\_OVERFLOW](../../reference/topics/region_shortcuts_reference.html#reference_t2p_jpy_lk)** - -- **[REPLICATE\_PERSISTENT](../../reference/topics/region_shortcuts_reference.html#reference_emp_jpy_lk)** - -- **[REPLICATE\_PERSISTENT\_OVERFLOW](../../reference/topics/region_shortcuts_reference.html#reference_tsp_jpy_lk)** - -- **[REPLICATE\_PROXY](../../reference/topics/region_shortcuts_reference.html#reference_n1q_jpy_lk)** - - http://git-wip-us.apache.org/repos/asf/geode-native/blob/ff80a931/geode-docs/reference/topics/client-cache-elements-list.html.md.erb ---------------------------------------------------------------------- diff --git a/geode-docs/reference/topics/client-cache-elements-list.html.md.erb b/geode-docs/reference/topics/client-cache-elements-list.html.md.erb deleted file mode 100644 index ee986b3..0000000 --- a/geode-docs/reference/topics/client-cache-elements-list.html.md.erb +++ /dev/null @@ -1,120 +0,0 @@ ---- -title: "<client-cache> Element Hierarchy" ---- - -This section shows the hierarchy of `` element sub-elements that you use to configure Geode caches and clients. - -For details, see [<client-cache> Element Reference.](client-cache.html) - -``` pre - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -```