Merge pull request #3458 from breezecoder/patch-1

Translate table engines page to chinese.
This commit is contained in:
alexey-milovidov 2018-10-24 15:08:07 +03:00 committed by GitHub
commit ed28b8d66e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1 +1,13 @@
../../../en/operations/table_engines/index.md
# 表引擎
表引擎(即表的类型)决定了:
* 数据的存储方式和位置,写到哪里以及从哪里读取数据。
* 支持哪些查询以及如何支持。
* 并发数据访问。
* 索引的使用(如果存在)。
* 是否可以执行多线程请求。
* 数据复制参数。
在读取时,引擎只需要输出所请求的列,但在某些情况下,引擎可以在响应请求时部分处理数据。
对于大多数正式的任务应该使用MergeTree族中的引擎。