ClickHouse/docs/en/operations/caches.md
Dmitriy 0d9578efc9 Edit and translate
Поправил английскую версию и выполнил перевод.
2021-02-14 14:14:39 +03:00

941 B

toc_priority toc_title
65 Caches

Cache Types

When performing queries, ClichHouse 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