Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clustered indexes: add initial docs #4476

Merged
merged 29 commits into from
Dec 29, 2020
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ceb98c0
clustered indexes: add initial docs
morgo Dec 22, 2020
f3ee308
Merge branch 'master' into clustered-indexes
morgo Dec 22, 2020
a0b3aa2
Fix lint issues
morgo Dec 22, 2020
67c2620
Merge branch 'clustered-indexes' of github.com:morgo/docs into cluste…
morgo Dec 22, 2020
b6dd2bc
Update clustered-indexes.md
morgo Dec 23, 2020
00db7b0
Update clustered-indexes.md
morgo Dec 23, 2020
e4da8d1
clarify clustered index vs primary key
morgo Dec 23, 2020
0f9536f
Update system-variables.md
TomShawn Dec 24, 2020
4d52321
Update clustered-indexes.md
morgo Dec 24, 2020
57b0ff4
Update clustered-indexes.md
morgo Dec 24, 2020
0df8870
Merge branch 'master' into clustered-indexes
morgo Dec 24, 2020
2a36a87
Update clustered-indexes.md
morgo Dec 24, 2020
960cf36
Fix broken anchor
morgo Dec 24, 2020
48dc189
Update clustered-indexes.md
morgo Dec 24, 2020
45c1713
Update clustered-indexes.md
morgo Dec 24, 2020
f8058ef
Update clustered-indexes.md
morgo Dec 24, 2020
e44f3b2
Update clustered-indexes.md
morgo Dec 24, 2020
971de04
Update clustered-indexes.md
morgo Dec 24, 2020
5966e77
Update clustered-indexes.md
morgo Dec 25, 2020
4e55db2
Merge branch 'master' into clustered-indexes
TomShawn Dec 25, 2020
6a992cc
Merge remote-tracking branch 'upstream/master' into clustered-indexes
morgo Dec 27, 2020
b15e2d2
Add suggestions
morgo Dec 27, 2020
7666c24
Merge branch 'master' into clustered-indexes
TomShawn Dec 28, 2020
c0289ba
Update clustered-indexes.md
morgo Dec 28, 2020
aa2c848
Update clustered-indexes.md
morgo Dec 28, 2020
1132bea
Update clustered-indexes.md
morgo Dec 28, 2020
c3adf87
Update clustered-indexes.md
morgo Dec 28, 2020
762c897
Update clustered-indexes.md
morgo Dec 28, 2020
7de0023
Merge branch 'master' into clustered-indexes
TomShawn Dec 29, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update clustered-indexes.md
  • Loading branch information
morgo authored Dec 24, 2020
commit 2a36a8701c6418bc25a993a5be71362bfc1474b6
2 changes: 1 addition & 1 deletion clustered-indexes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ summary: Learn how clustered indexes apply to TiDB.

# Clustered Indexes

The clustered index is an experimental feature introduced in TiDB 5.0-rc. This document provides multiple examples to explain how this feature makes a difference to the query performance of TiDB. To enable this feature and see the detailed operation guide, see [tidb_enable_clustered_index](/system-variables.md#tidb_enable_clustered_index-).
The clustered index is an experimental feature introduced in TiDB 5.0-rc. This document provides multiple examples to explain how this feature makes a difference to the query performance of TiDB. To enable this feature and see the detailed operation guide, see [tidb_enable_clustered_index](/system-variables.md#tidb_enable_clustered_index--new-in-v50).

Clustered indexes provide TiDB the ability to organize tables in a way that can improve the performance of certain queries. The term _clustered_ in this context refers to the _organization of how data is stored_ and not _a group of database servers working together_. Some database management systems refer to clustered indexes as _index-organized tables_ (IOT).

Expand Down