[Go] 实现 Google Authenticator 二次验证 2023-05-27 golang 1329 words 3 mins read Google Authenticator 二次验证 Google Authenticator 使用一次性密码(One-time Passcodes)(OTP)进行两步验证。 广泛应用于网站或APP登录二次验证。 Google Authe Read more...
[Graylog] Graylog 安装部署 2023-03-31 graylog 1222 words 3 mins read Graylog graylog是一个简单易用、功能较全面的日志管理工具,graylog采用Elasticsearch或OpenSearch作为存储和索引以 Read more...
[Clickhouse] clickhouse中使用AggregatingMergeTree表引擎聚合k线数据 2023-02-18 clickhouse 1122 words 3 mins read 使用 AggregatingMergeTree 表来做增量数据的聚合统计,包括物化视图的数据聚合。 股市及期货市场中的K线图的画法包含四个数据,即开盘价、最高价、最低价、收盘价。 以及单 Read more...
[ClickHouse] ClickHouse SQL简单操作 2023-01-01 clickhouse 2242 words 5 mins read ClickHouse支持一种基于SQL的声明式查询语言,它在许多情况下与ANSI SQL标准相同。 支持的查询GROUP BY, ORDER BY, FROM, JOIN, IN以及非相关 Read more...
[ClickHouse] ClickHouse 表引擎介绍 2022-12-31 clickhouse 2722 words 6 mins read ClickHouse 表引擎介绍 表引擎 表引擎(即表的类型)决定了: 数据的存储方式和位置,写到哪里以及从哪里读取数据 支持哪些查询以及如何支持。 并发数据访问。 索引的 Read more...