You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can also install the hazelcast-cpp-client with [conan](https://conan.io/) and from source code. You can more information from [Reference Manual](https://github.com/akeles85/hazelcast-cpp-client/blob/readme_update/Reference_Manual.md#11-installing).
100
+
You can also install the hazelcast-cpp-client with [conan](https://conan.io/) and from source code. You can more information from [Reference Manual](Reference_Manual.md#11-installing).
101
101
102
102
## Overview
103
103
104
104
### Usage
105
105
106
-
There is an example project in the [sample_project](https://github.com/akeles85/hazelcast-cpp-client/tree/readme_update/sample_project) directory. You can run the example as below:
106
+
There is an example project in the [sample_project](sample_project) directory. You can run the example as below:
107
107
108
108
If you use Linux or Mac:
109
109
@@ -146,8 +146,8 @@ int main() {
146
146
147
147
* Distributed, partitioned and queryable in-memory key-value store implementation, called [Map](examples/distributed-map/basic/FillMap.cpp)
148
148
* Eventually consistent cache implementation to store a subset of the Map data locally in the memory of the client, called [Near Cache](examples/distributed-map/near-cache)
149
-
* Additional data structures and simple messaging constructs such as [Set](examples/distributed-collections/set), [MultiMap](https://github.com/hazelcast/hazelcast-cpp-client/blob/master/examples/distributed-map/multimap/MultimapPut.cpp), [Queue](examples/distributed-collections/blockingqueue), [Topic](examples/distributed-topic)
150
-
* Cluster-wide unique ID generator, called [FlakeIdGenerator](https://github.com/hazelcast/hazelcast-cpp-client/tree/master/examples/learning-basics/unique-names)
149
+
* Additional data structures and simple messaging constructs such as [Set](examples/distributed-collections/set), [MultiMap](examples/distributed-map/multimap/MultimapPut.cpp), [Queue](examples/distributed-collections/blockingqueue), [Topic](examples/distributed-topic)
150
+
* Cluster-wide unique ID generator, called [FlakeIdGenerator](examples/learning-basics/unique-names)
151
151
* Distributed, CRDT based counter, called [PNCounter](examples/distributed-primitives/crdt-pncounter)
152
152
* Distributed concurrency primitives from CP Subsystem such as [FencedLock](examples/cp/fenced_lock.cpp), [Semaphore](examples/cp/counting_semphore.cpp), [AtomicLong](examples/cp/atomic_long.cpp)
153
153
* Integration with [Viridian](https://viridian.hazelcast.com/) (Hazelcast Cloud)
If you set a property both programmatically and via an environment variable, the programmatically set value will be used.
604
604
605
-
See the [complete list of system properties](https://github.com/hazelcast/hazelcast-cpp-client/blob/master/hazelcast/include/hazelcast/client/client_properties.h), along with their descriptions, which can be used to configure your Hazelcast C++ client.
605
+
See the [complete list of system properties](hazelcast/include/hazelcast/client/client_properties.h), along with their descriptions, which can be used to configure your Hazelcast C++ client.
606
606
607
607
## 1.5. Basic Usage
608
608
@@ -757,7 +757,7 @@ You will see this time we add only the sales employees but we get the list all k
757
757
758
758
## 1.6. Code Samples
759
759
760
-
See the Hazelcast C++ [code samples](https://github.com/hazelcast/hazelcast-cpp-client/tree/master/examples) for more examples.
760
+
See the Hazelcast C++ [code samples](examples) for more examples.
You need to enable the discovery by calling the `set_enabled(true)`. You can set your access key and secret in the configuration as shown in this example. You can filter the instances by setting which tags they have or by the security group setting. You can set the region for which the instances will be retrieved from, the default region is `us-east-1`.
1300
1300
1301
-
See [client_aws_config.h](https://github.com/hazelcast/hazelcast-cpp-client/blob/master/hazelcast/include/hazelcast/client/config/client_aws_config.h)
1302
-
and [the AWS examples directory](https://github.com/hazelcast/hazelcast-cpp-client/tree/master/examples/aws)
1301
+
See [client_aws_config.h](hazelcast/include/hazelcast/client/config/client_aws_config.h)
1302
+
and [the AWS examples directory](examples/aws)
1303
1303
for more details.
1304
1304
1305
1305
## 5.8. Enabling Hazelcast Cloud Discovery
@@ -3850,7 +3850,7 @@ Besides your development contributions as explained in the [Development and Test
0 commit comments