query_cache
显示查询缓存的内容。
列
query
(String) — 查询字符串。result_size
(UInt64) — 查询缓存条目的大小。tag
(LowCardinality(String)) — 查询缓存条目的标签。stale
(UInt8) — 查询缓存条目是否已过期。shared
(UInt8) — 查询缓存条目是否在多个用户之间共享。compressed
(UInt8) — 查询缓存条目是否已压缩。expires_at
(DateTime) — 查询缓存条目何时过期。key_hash
(UInt64) — 查询字符串的哈希值,用作查找查询缓存条目的键。
示例
SELECT * FROM system.query_cache FORMAT Vertical;
Row 1:
──────
query: SELECT 1 SETTINGS use_query_cache = 1
result_size: 128
tag:
stale: 0
shared: 0
compressed: 1
expires_at: 2023-10-13 13:35:45
key_hash: 12188185624808016954
1 row in set. Elapsed: 0.004 sec.