Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ See the API docs for API details:
- [C++ API docs](https://geode.apache.org/releases/latest/cppdocs/index.html)
- [.NET API docs](https://geode.apache.org/releases/latest/dotnetdocs/index.html)

See the [_<%=vars.product_name_long%> User Guide_](/serverman/about_<%=vars.product_name.downcase%>.html) for information regarding the server.
See the [_<%=vars.product_name_long%> User Guide_](serverman/about_<%=vars.product_name.downcase%>.html) for information regarding the server.

Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ Regions are created from `Cache` instances. Regions provide the entry points to
instances of `Region` and `RegionEntry`.

For more information specific to your client programming language, see the
[C++ Client API](https://gemfire-nc-100-cppdocs.cfapps.io) or the
[.NET Client API](https://gemfire-nc-100-dotnetdocs.cfapps.io).
[C++ Client API](cppdocs) or the
[.NET Client API](dotnetdocs).

Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ When redundancy is enabled, secondary servers maintain queue backups while the p
events to the client. If the primary server fails, one of the secondary servers steps in as primary
to provide uninterrupted event messaging to the client.
To configure high availability, set the `subscription-redundancy` in the client’s pool configuration. This setting indicates the number of secondary servers to use.
See the _<%=vars.product_name%> User Guide_ section [Configuring Highly Available Servers](/serverman/developing/events/configuring_highly_available_servers.html)
See the _<%=vars.product_name%> User Guide_ section [Configuring Highly Available Servers](serverman/developing/events/configuring_highly_available_servers.html)
for more details.

4 changes: 2 additions & 2 deletions docs/geode-native-docs/configuring/sysprops.html.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ limitations under the License.

A variety of system properties can be specified when a client connects to a distributed system, either programmatically or in a `geode.properties` file.

- In the [.NET API docs](https://gemfire-nc-100-dotnetdocs.cfapps.io), see `Apache::Geode::Client::SystemProperties`.
- In the [C++ API docs](https://gemfire-nc-100-cppdocs.cfapps.io), see `apache::geode::client::SystemProperties`.
- In the [.NET API docs](dotnetdocs), see `Apache::Geode::Client::SystemProperties`.
- In the [C++ API docs](cppdocs), see `apache::geode::client::SystemProperties`.

The following settings can be configured:

Expand Down
2 changes: 1 addition & 1 deletion docs/geode-native-docs/continuous-queries.html.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.

The C++ and .NET clients can initiate queries that run on the <%=vars.product_name%> cache server
and notify the client when the query results have changed. For details on the server-side setup for
continuous queries, see [How Continuous Querying Works](/serverman/developing/continuous_querying/how_continuous_querying_works.html)
continuous queries, see [How Continuous Querying Works](serverman/developing/continuous_querying/how_continuous_querying_works.html)
in the *<%=vars.product_name%> User Guide*.

## <a id="cq_main_features" ></a>Continuous Query Basics
Expand Down
2 changes: 1 addition & 1 deletion docs/geode-native-docs/function-execution.html.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ To be callable from your client, a function must be
- resident on the server, and
- registered as available for client access.

See [Executing a Function in <%=vars.product_name_long%>](/serverman/developing/function_exec/function_execution.html)
See [Executing a Function in <%=vars.product_name_long%>](serverman/developing/function_exec/function_execution.html)
in the <%=vars.product_name%> User Guide for details on how to write and register server-resident functions.

## <a id="client_side_requirements"></a>Client-side Requirements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ You can choose whether to use a large, remote, production-quality cluster; a sma
development cluster; or something in-between, such as a testing or experimental lab installation.

In the _<%=vars.product_name%> User's Guide_,
see [Configuring and Running a Cluster](/serverman/configuring/chapter_overview.html)
and [Client/Server Configuration](/serverman/topologies_and_comm/cs_configuration/chapter_overview.html) for instructions on setting up and starting the cluster for a client/server configuration.
see [Configuring and Running a Cluster](serverman/configuring/chapter_overview.html)
and [Client/Server Configuration](serverman/topologies_and_comm/cs_configuration/chapter_overview.html) for instructions on setting up and starting the cluster for a client/server configuration.

### <a id="connecting_to_server"></a>Connecting to the Server

Expand Down Expand Up @@ -99,7 +99,7 @@ Create a named pool of network connections, and instantiate a region of the desi
var region = regionFactory.Create<string, string>("example_userinfo"); // create a connection to the region "example_userinfo" on the server
```

See the _<%=vars.product_name%> User Guide_ section [Configuring a Client/Server System](/serverman/topologies_and_comm/cs_configuration/setting_up_a_client_server_system.html)
See the _<%=vars.product_name%> User Guide_ section [Configuring a Client/Server System](serverman/topologies_and_comm/cs_configuration/setting_up_a_client_server_system.html)
for more details.


Expand Down
5 changes: 2 additions & 3 deletions docs/geode-native-docs/regions/region-attributes.html.md.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
title: Region Attributes
---

<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
Expand All @@ -23,14 +22,14 @@ Region attributes govern the automated management of a region and its entries.

Region attribute settings determine where the data resides, how the region is managed in memory, and the automatic loading, distribution, and expiration of region entries.

## <a id="specifying-region-attributes"></a>Specifying Region Attributes
## <a id="specifying-region-attributes" class="no-quick-link"></a>Specifying Region Attributes

Specify region attributes before creating the region. You can do this either through the API or
through the declarative XML file. The API includes classes for defining a region's attributes before
creation and for modifying some attributes after creation. For details, see the API for
`RegionShortcut`, `RegionAttributes`, `RegionAttributesFactory`, and `AttributesMutator`.

## <a id="region-shortcuts"></a>Region Shortcuts
## <a id="region-shortcuts" class="no-quick-link"></a>Region Shortcuts

<%=vars.product_name%> provides predefined, shortcut region attributes settings for your use in `RegionShortcut`.
The shortcuts are:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ Data in your client application's <%=vars.product_name%> cache must be serializa
between processes, of which **<%=vars.product_name%> Portable Data eXchange (PDX) serialization** offers
the best combination of versatility and ease-of-use for most applications.

To learn more about other serialization options, see the [Data Serialization section in the _<%=vars.product_name_long%> User Guide_](/serverman/developing/data_serialization/chapter_overview.html).
To learn more about other serialization options, see the [Data Serialization section in the _<%=vars.product_name_long%> User Guide_](serverman/developing/data_serialization/chapter_overview.html).