目录

  1. stats items 命令简介
  2. stats items 命令的语法
  3. stats items 命令的输出解释
  4. 使用 Telnet 查看 Memcached 缓存项信息
  5. 不同编程语言的 stats items 示例
  6. 参考资料

1. stats items 命令简介

stats items 命令是 Memcached 提供的一个用于查看缓存项统计信息的命令。它可以显示存储在 Memcached 中的所有缓存项的数量、使用的 slab 类别,以及这些项的基本信息。这对于监控 Memcached 实例的存储分布和缓存项的情况非常有帮助。

执行 stats items 命令后,Memcached 会返回关于每个存储项的详细统计数据,帮助用户了解内存中的缓存项的数量、类型以及它们所占用的内存。


2. stats items 命令的语法

stats items

此命令不需要任何额外的参数。当执行 stats items 时,Memcached 会列出每个 slab 类别下的缓存项数量。


3. stats items 命令的输出解释

stats items 命令的输出包括多个条目,每个条目代表一个 slab 类别下的缓存项数量。输出内容通常包括以下字段:

  • items:<slab_number>:number:表示某个 slab 类别下的缓存项数量,其中 <slab_number> 是 slab 的编号。
  • items:<slab_number>:age:表示该 slab 类别的缓存项的年龄(以秒为单位)。
  • items:<slab_number>:evicted:表示该 slab 类别的缓存项被淘汰的数量。

例如,执行 stats items 后可能会看到如下输出:

STAT items:1:number 512
STAT items:2:number 1024
STAT items:3:number 256

这意味着 slab 1 中有 512 个缓存项,slab 2 中有 1024 个缓存项,slab 3 中有 256 个缓存项。


4. 使用 Telnet 查看 Memcached 缓存项信息

4.1 连接 Memcached

telnet 127.0.0.1 11211

4.2 使用 stats items 查看缓存项信息

stats items

返回结果:

STAT items:1:number 512
STAT items:2:number 1024
STAT items:3:number 256

表示:

  • Slab 1 中有 512 个缓存项。
  • Slab 2 中有 1024 个缓存项。
  • Slab 3 中有 256 个缓存项。

4.3 使用 stats items 查看更详细的信息

如果需要查看更详细的统计信息(例如项的年龄、淘汰数等),可以使用特定的 slabs 命令来获取详细的 slab 信息。

stats slabs

返回结果:

STAT 1:chunk_size 128
STAT 1:chunks 1024
STAT 1:free_chunks 512
STAT 1:used_chunks 512
STAT 2:chunk_size 256
STAT 2:chunks 2048
STAT 2:free_chunks 1024
STAT 2:used_chunks 1024
...


5. 不同编程语言的 stats items 示例

5.1 PHP stats items 示例

<?php
$memcached = new Memcached();
$memcached->addServer("127.0.0.1", 11211);

// 获取 Memcached 的 items 统计信息
$stats = $memcached->getStats();

// 输出所有缓存项的信息
foreach ($stats as $server => $stat) {
    echo "Server: $server\n";
    foreach ($stat as $key => $value) {
        if (strpos($key, 'items') === 0) { // 只输出 items 相关的信息
            echo "$key: $value\n";
        }
    }
}
?>


5.2 Python stats items 示例

from pymemcache.client import base

client = base.Client(('127.0.0.1', 11211))

# 获取 Memcached 的 items 统计信息
stats = client.get_stats()

# 输出所有缓存项的信息
for server, stat in stats:
    print(f"Server: {server}")
    for key, value in stat.items():
        if key.startswith('items'):  # 只输出 items 相关的信息
            print(f"{key}: {value}")


5.3 Java stats items 示例

import net.spy.memcached.MemcachedClient;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.util.Map;

public class MemcachedTest {
    public static void main(String[] args) throws IOException {
        MemcachedClient client = new MemcachedClient(new InetSocketAddress("127.0.0.1", 11211));

        // 获取 Memcached 的 items 统计信息
        Map<String, String> stats = client.getStats();
        for (Map.Entry<String, String> entry : stats.entrySet()) {
            if (entry.getKey().startsWith("items")) {  // 只输出 items 相关的信息
                System.out.println(entry.getKey() + ": " + entry.getValue());
            }
        }

        client.shutdown();
    }
}


5.4 Node.js stats items 示例

const Memcached = require('memcached');
const memcached = new Memcached("127.0.0.1:11211");

// 获取 Memcached 的 items 统计信息
memcached.stats(function(err, stats) {
    if (err) {
        console.error(err);
    } else {
        console.log("Items Stats:");
        for (let key in stats) {
            if (key.startsWith('items')) {  // 只输出 items 相关的信息
                console.log(`${key}: ${stats[key]}`);
            }
        }
    }
});


6. 参考资料