File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ three primitives available to the container:
18
18
19
19
```
20
20
$ mkdir /tmp/test
21
- $ docker run --rm -e MEMCACHED_SERVERS=192.168.1.101:11211 -v /tmp/test:/tmp/memcache memcache-client dump
21
+ $ docker run --rm -e MEMCACHED_SERVERS=192.168.1.101:11211 -v /tmp/test:/tmp/memcache brianredbeard/ memcache-tools dump
22
22
```
23
23
24
24
## Examples
@@ -37,7 +37,7 @@ $ docker run -p 11211 -d --name memcached jacksoncage/memcache
37
37
38
38
```
39
39
$ mkdir /tmp/test
40
- $ docker run --rm --link memcached:mc -v /tmp/test:/tmp/memcache memcache-client sample
40
+ $ docker run --rm --link memcached:mc -v /tmp/test:/tmp/memcache brianredbeard/ memcache-tools sample
41
41
```
42
42
43
43
### Verify that the data is there
@@ -81,7 +81,7 @@ Here we see that on slab 3 we have 899 values in the cache and that the key
81
81
### Dump the contents of the cache
82
82
83
83
```
84
- $ docker run --rm --link memcached:mc -v /tmp/test:/tmp/memcache memcache-client dump
84
+ $ docker run --rm --link memcached:mc -v /tmp/test:/tmp/memcache brianredbeard/ memcache-tools dump
85
85
```
86
86
87
87
You will find that in /tmp/test there will be 899 files, each with the name of
@@ -108,7 +108,7 @@ no data returned.
108
108
### Reload our sample data
109
109
110
110
```
111
- $ docker run --rm --link memcached:mc -v /tmp/test:/tmp/memcache memcache-client load
111
+ $ docker run --rm --link memcached:mc -v /tmp/test:/tmp/memcache brianredbeard/ memcache-tools load
112
112
```
113
113
114
114
At this point our data should be reloaded.
You can’t perform that action at this time.
0 commit comments