2021-01-16 20:00:00 +00:00
---
toc_priority: 65
toc_title: Caches
---
# Cache Types {#cache-types}
When performing queries, ClichHouse uses different caches.
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.
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.
2021-01-16 20:00:00 +00:00
2021-01-21 20:56:29 +00:00
Indirectly used:
2021-02-14 11:14:39 +00:00
- OS page cache.
2021-01-16 20:00:00 +00:00
2021-01-22 06:53:11 +00:00
To drop cache, use [SYSTEM DROP ... CACHE ](../sql-reference/statements/system.md ) statements.
2021-01-16 20:00:00 +00:00
[Original article ](https://clickhouse.tech/docs/en/operations/caches/ ) <!--hide-->