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
Copy file name to clipboardExpand all lines: docs/getting_started.rst
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,14 +16,13 @@ An even simpler way is to install the client from the official Python Package In
16
16
pip install hazelcast-python-client
17
17
18
18
19
-
20
19
Starting Hazelcast
21
20
------------------
22
21
23
-
Before diving right into the configuration, you should have a running Hazelcast server. If you are already familiar
24
-
with Hazelcast and have a server running, you can simply skip to the Configuration section.
22
+
Before diving right into the configuration, you should have a running Hazelcast member. If you are already familiar
23
+
with Hazelcast and have a member running, you can simply skip to the Configuration section.
25
24
26
-
If not, follow these steps to start an Hazelcast server in your local computer:
25
+
If not, follow these steps to start an Hazelcast member in your local computer:
27
26
28
27
* Make sure that you have `Java <http://www.oracle.com/technetwork/java/javase/downloads/index.html>`_ installed on your system.
29
28
* Download the latest `Hazelcast release <https://hazelcast.org/download/>`_.
@@ -32,7 +31,9 @@ If not, follow these steps to start an Hazelcast server in your local computer:
32
31
* If you are using Linux/MacOS, you can start a Hazelcast member with **start.sh** and stop the member you have started with **stop.sh** when you are done.
33
32
* If you are using Windows, you can start a Hazelcast member with **start.bat** and stop the member you have started with **stop.bat** when you are done.
34
33
* Refer to the `Using the Scripts In The Package <http://docs.hazelcast.org/docs/latest/manual/html-single/index.html#using-the-scripts-in-the-package>`_ for more information about these scripts.
35
-
* After successfully running these scripts, you should see the ip address and port of your member on your console. Take a note of these and jump right into the Configuration section!
34
+
* If you use **start.sh/bat** again while your first Hazelcast member is running, you will start a second Hazelcast member. These members will join together to form a Hazelcast cluster.
35
+
* You can increase the size of your cluster by repeating the step above as many times as you want.
36
+
* After successfully running these scripts, you should see the ip address and port of your members on your console. Take a note of these and jump right into the Configuration section!
Copy file name to clipboardExpand all lines: examples/README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,17 +6,19 @@ This folder contains a collection of code samples which you can use to learn how
6
6
How to try these examples
7
7
-------------------------
8
8
9
-
* To try these examples, you should have a running Hazelcast server. If you are already familiar with Hazelcast and have a server running, add its address and port to your configuration as shown in the [**/learning-basics/1-configure_client.py**](learning-basics/1-configure_client.py).
10
-
* If not, follow these steps to start an Hazelcast server in your local computer:
9
+
* To try these examples, you should have a running Hazelcast member. If you are already familiar with Hazelcast and have a member running, add its address and port to your configuration as shown in the [**/learning-basics/1-configure_client.py**](learning-basics/1-configure_client.py).
10
+
* If not, follow these steps to start an Hazelcast member in your local computer:
11
11
* Make sure that you have [Java](http://www.oracle.com/technetwork/java/javase/downloads/index.html) installed on your system.
12
12
* Download the latest [Hazelcast release](https://hazelcast.org/download/).
13
13
* Extract the zip file you have downloaded.
14
14
* You should see a directory called **bin** which includes a few scripts and xml files.
15
15
* If you are using Linux/MacOS, you can start a Hazelcast member with **start.sh** and stop the member you have started with **stop.sh** when you are done.
16
16
* If you are using Windows, you can start a Hazelcast member with **start.bat** and stop the member you have started with **stop.bat** when you are done.
17
17
* Refer to the [Using the Scripts In The Package](http://docs.hazelcast.org/docs/latest/manual/html-single/index.html#using-the-scripts-in-the-package) for more information about these scripts.
18
-
* After successfully running these scripts, you should see the ip address and port of your member on your console. Take a note of these.
19
-
* Add this address and port to your configuration as shown in the [**/learning-basics/1-configure_client.py**](learning-basics/1-configure_client.py).
18
+
* If you use **start.sh/bat** again while your first Hazelcast member is running, you will start a second Hazelcast member. These members will join together to form a Hazelcast cluster.
19
+
* You can increase the size of your cluster by repeating the step above as many times as you want.
20
+
* After successfully running these scripts, you should see the ip address and port of your members on your console. Take a note of these.
21
+
* Add these addresses and ports to your configuration as shown in the [**/learning-basics/1-configure_client.py**](learning-basics/1-configure_client.py).
20
22
* After configuring your client as described above, you are ready to learn using Hazelcast Python Client with these examples.
0 commit comments