ClickHouse/docs/en/engines/database-engines/lazy.md

17 lines
495 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
toc_priority: 31
toc_title: Lazy
---
# Lazy {#lazy}
Keeps tables in RAM only `expiration_time_in_seconds` seconds after last access. Can be used only with \*Log tables.
Its optimized for storing many small \*Log tables, for which there is a long time interval between accesses.
## Creating a Database {#creating-a-database}
CREATE DATABASE testlazy ENGINE = Lazy(expiration_time_in_seconds);
[Original article](https://clickhouse.com/docs/en/database_engines/lazy/) <!--hide-->