ClickHouse/docs/en/engines/database-engines/lazy.md
Ivan Blinkov d91c97d15d
[docs] replace underscores with hyphens (#10606)
* Replace underscores with hyphens

* remove temporary code

* fix style check

* fix collapse
2020-04-30 21:19:18 +03:00

496 B
Raw Blame History

toc_priority toc_title
31 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

CREATE DATABASE testlazy ENGINE = Lazy(expiration_time_in_seconds);

Original article