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: content/features/proxy/quickstart.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ echo 'pools{
95
95
96
96
routes{
97
97
map = {
98
-
quickstart_route = route_direct{
98
+
quickstart = route_direct{
99
99
child = "quickstart_pool",
100
100
},
101
101
},
@@ -125,7 +125,7 @@ routes{
125
125
126
126
```
127
127
telnet localhost 11211
128
-
set quickstart-data 0 0 6
128
+
set quickstart/data 0 0 6
129
129
Hello!
130
130
```
131
131
@@ -134,7 +134,7 @@ routes{
134
134
1. Fetch the data again:
135
135
136
136
```
137
-
get quickstart-data
137
+
get quickstart/data
138
138
```
139
139
140
140
The Memcached proxy responds with the following:
@@ -150,11 +150,11 @@ routes{
150
150
151
151
1. At the `telnet>` prompt, enter `quit`.
152
152
153
-
At this point, you can optionally connect to the two Memcached backend servers by connecting to ports `11212` and `11213` and running the command `get quickstart-data` on both. One of the two servers returns the value `Hello!`. That server is the one that the proxy chose as the backend to store the data under the `quickstart-data` key.
153
+
At this point, you can optionally connect to the two Memcached backend servers by connecting to ports `11212` and `11213` and running the command `get quickstart/data` on both. One of the two servers returns the value `Hello!`. That server is the one that the proxy chose as the backend to store the data under the `quickstart/data` key.
154
154
155
155
## Clean up
156
156
157
-
When you are finished with this tutorial, you can stop the three Memcached processes that you launched in the previous steps.
157
+
When you are finished with this tutorial, you can stop the three Memcached processes that you launched in the previous steps. You can do this by repeatedly running `fg` then pressing ctrl-c until all instances are stopped.
158
158
159
159
Because this quickstart didn't have you install the Memcached software that you built, you can clean up by deleting the source directory that you downloaded.
0 commit comments