ClickHouse/docs/en/operations/caches.md
2022-08-29 12:19:50 -04:00

993 B

slug sidebar_position sidebar_label title
/en/operations/caches 65 Caches Cache Types

When performing queries, ClickHouse uses different caches.

Main cache types:

  • mark_cache — Cache of marks used by table engines of the MergeTree family.
  • uncompressed_cache — Cache of uncompressed data used by table engines of the MergeTree family.

Additional cache types:

Indirectly used:

  • OS page cache.

To drop cache, use SYSTEM DROP ... CACHE statements.

Original article