-
Notifications
You must be signed in to change notification settings - Fork 382
Diataxis categorization using anthropic to categorize by content. #4341
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
Changes from 3 commits
8f57691
b5aaf9b
3453e27
69cbbfb
a907c70
75b804f
f0eefec
0386b8f
4ee80a3
3606568
e0fe209
411ef24
9c23ab9
c4b256c
b060984
84af8b3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
sidebar_label: Keys | ||
title: Keys | ||
doc_type: 'reference' | ||
--- | ||
|
||
## Get list of all keys {#get-list-of-all-keys} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
--- | ||
sidebar_label: Tabs Sample | ||
doc_type: 'how-to' | ||
|
||
--- | ||
|
||
import Tabs from '@theme/Tabs'; | ||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -2,6 +2,7 @@ | |||||
title: 'FAQ' | ||||||
slug: /about-us/faq | ||||||
description: 'Landing page' | ||||||
doc_type: 'reference' | ||||||
|
doc_type: 'reference' | |
doc_type: 'landing page' |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -5,6 +5,7 @@ sidebar_position: 50 | |||||
description: 'Understand what makes ClickHouse stand apart from other database management systems' | ||||||
title: 'Distinctive Features of ClickHouse' | ||||||
keywords: ['compression', 'secondary-indexes','column-oriented'] | ||||||
doc_type: 'reference' | ||||||
|
doc_type: 'reference' | |
doc_type: 'explanation' |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -2,6 +2,7 @@ | |||||
slug: /about | ||||||
title: 'About ClickHouse' | ||||||
description: 'Landing page for About ClickHouse' | ||||||
doc_type: 'reference' | ||||||
|
doc_type: 'reference' | |
doc_type: 'landing page' |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -4,6 +4,7 @@ keywords: ['Cloud', 'Primary key', 'Ordering key', 'Materialized Views', 'Best P | |||||
title: 'Overview' | ||||||
hide_title: true | ||||||
description: 'Landing page for Best Practices section in ClickHouse' | ||||||
doc_type: 'reference' | ||||||
|
doc_type: 'reference' | |
doc_type: 'landing page' |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -6,6 +6,7 @@ title: 'Use JSON where appropriate' | |||||
description: 'Page describing when to use JSON' | ||||||
keywords: ['JSON'] | ||||||
show_related_blogs: true | ||||||
doc_type: 'reference' | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
--- | ||||||
|
||||||
ClickHouse now offers a native JSON column type designed for semi-structured and dynamic data. It's important to clarify that **this is a column type, not a data format**—you can insert JSON into ClickHouse as a string or via supported formats like [JSONEachRow](/docs/interfaces/formats/JSONEachRow), but that does not imply using the JSON column type. Users should only use the JSON type when the structure of their data is dynamic, not when they simply happen to store JSON. | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.