/images/avatar.jpg
杂七杂八的,随手记录。

[笔记]筚路维艰:中国社会主义路径的五次选择-萧冬连

  • 108-109, 标注, 2024 年 12 月 31 日星期二 下午 11:01:17

    追寻真相不等于一切都“反着看”“倒着看”,最后的判断只能是依据事实。

  • 111-113, 标注, 2024 年 12 月 31 日星期二 下午 11:02:54

    本书的考察自然要涉及领袖人物的意志和党内分歧,但更注重于分析在个人意志和党内分歧背后起作用的历史的、制度的和观念的因素。通过这种梳理,为人们思考中国未来走向提供某种历史经验的支持。

LowCardinality(T) | ClickHouse Docs

本文为摘录(或转载),侵删,原文为: https://clickhouse.com/docs/en/sql-reference/data-types/lowcardinality

1 LowCardinality(T)

https://clickhouse.com/docs/en/sql-reference/data-types/lowcardinality

Changes the internal representation of other data types to be dictionary-encoded.

1.1 Syntax​

1
LowCardinality(data_type)

Parameters:

  • data_type
    • String, FixedString, Date, DateTime, and numbers excepting Decimal.
    • LowCardinality is not efficient for some data types, see the allow_suspicious_low_cardinality_types setting description.

1.2 Description​

LowCardinality is a superstructure that changes a data storage method and rules of data processing. ClickHouse applies dictionary coding to LowCardinality-columns. Operating with dictionary encoded data significantly increases performance of SELECT queries for many applications.

StarRocks 技术内幕 | 基于全局字典的极速字符串查询

数据库 - StarRocks 技术内幕 | Join 查询优化

本文为摘录(或转载),侵删,原文为: https://segmentfault.com/a/1190000042739883

作者:贺凯,StarRocks Committer

导读:欢迎来到 StarRocks 技术内幕系列文章,我们将为你全方位揭晓 StarRocks 背后的技术原理和实践细节,助你逐步上手这款明星开源数据库产品。

StarRocks 技术内幕:查询原理浅析