memcachedでは、
stats cachedump [slab id] [limit]

で、そのchunkの中身を取り出して、確認することができます。
(参考:http://gihyo.jp/dev/feature/01/memcached/0002


コマンドの結果はこんな感じ。
Trying 127.0.0.1...
Connected to host (IP).
Escape character is '^]'.
stats cachedump 1 10
ITEM aaa [1 b; 1231153416 s]
ITEM bbb [1 b; 1231153416 s]
ITEM ddd [1 b; 1231153416 s]
ITEM lll [1 b; 1231153416 s]
ITEM sss [1 b; 1231153416 s]
ITEM ggg [1 b; 1231153416 s]
ITEM rrr [1 b; 1231153416 s]
ITEM kkk [1 b; 1231153416 s]
ITEM hhh [1 b; 1231153416 s]
ITEM ttt [1 b; 1231153416 s]
END


で、これでどんなkeyでitemがcacheされているかわかる。


さらに、
ITEM ttt [1 b; 1231153416 s]


これは、
ITEM (key) [ (byte) b; (有効期限) s]


だそうで。
(参考:http://subtech.g.hatena.ne.jp/mala/20090209/1234177785


で、その『有効期限』の単位は何か、なんですが、unix timestampとな。
(参考:http://groups.google.com/group/memcached/browse_thread/thread/eb1db944f0a80cea?pli=1



調べていたら、最初に知りたかったこととは違うけど、たどり着いたので、memo。

間違いなどあれば、ご指摘くださいー。