Skip to content

Commit

Permalink
Create memcached.md
Browse files Browse the repository at this point in the history
  • Loading branch information
equivalent committed Aug 29, 2014
1 parent 85109a4 commit c786180
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions memcached.md
@@ -0,0 +1,28 @@

Inspecting memcached keys

```
telnet 127.0.0.1 11211
stats items
```

this will give you memcached slobs (something like a cluster of keys)
you can inspect slob with :

```
stats cachedump 20 100
```

first argument is slob number(20), second argument is number of lines (100)

to exit tellnet

```
ctrl + ]
quit
```

source:
* http://www.justhacking.com/inspecting-memcached-content
* http://superuser.com/questions/486496/how-do-i-exit-telnet

0 comments on commit c786180

Please sign in to comment.