2021-01-16 20:00:00 +00:00
---
2022-08-28 14:53:34 +00:00
slug: /en/operations/caches
2022-04-09 13:29:05 +00:00
sidebar_position: 65
sidebar_label: Caches
2022-08-29 16:19:50 +00:00
title: "Cache Types"
2021-01-16 20:00:00 +00:00
---
2022-05-31 15:46:53 +00:00
When performing queries, ClickHouse uses different caches.
2021-01-16 20:00:00 +00:00
Main cache types:
2021-02-14 11:14:39 +00:00
2021-01-16 20:00:00 +00:00
- `mark_cache` — Cache of marks used by table engines of the [MergeTree ](../engines/table-engines/mergetree-family/mergetree.md ) family.
- `uncompressed_cache` — Cache of uncompressed data used by table engines of the [MergeTree ](../engines/table-engines/mergetree-family/mergetree.md ) family.
2022-11-30 18:47:50 +00:00
- Operating system page cache (used indirectly, for files with actual data).
2021-01-16 20:00:00 +00:00
Additional cache types:
2021-02-14 11:14:39 +00:00
- DNS cache.
- [Regexp ](../interfaces/formats.md#data-format-regexp ) cache.
- Compiled expressions cache.
- [Avro format ](../interfaces/formats.md#data-format-avro ) schemas cache.
- [Dictionaries ](../sql-reference/dictionaries/index.md ) data cache.
2022-08-05 16:20:15 +00:00
- Schema inference cache.
2022-09-07 11:04:44 +00:00
- [Filesystem cache ](storing-data.md ) over S3, Azure, Local and other disks.
2023-02-02 11:29:57 +00:00
- [(Experimental) Query cache ](query-cache.md ).
2021-01-16 20:00:00 +00:00
2022-12-01 22:52:50 +00:00
To drop one of the caches, use [SYSTEM DROP ... CACHE ](../sql-reference/statements/system.md#drop-mark-cache ) statements.