mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
18 lines
445 B
Markdown
18 lines
445 B
Markdown
---
|
||
slug: /zh/engines/database-engines/lazy
|
||
sidebar_position: 31
|
||
sidebar_label: Lazy
|
||
---
|
||
|
||
# Lazy {#lazy}
|
||
|
||
在最后一次访问之后,只在RAM中保存`expiration_time_in_seconds`秒。只能用于\*Log表。
|
||
|
||
它是为存储许多小的\*Log表而优化的,对于这些表,访问之间有很长的时间间隔。
|
||
|
||
## 创建数据库 {#creating-a-database}
|
||
|
||
``` sql
|
||
CREATE DATABASE testlazy ENGINE = Lazy(expiration_time_in_seconds);
|
||
```
|