Title: Blogs
Open Graph Title: Blogs
X Title: Blogs
Description: A minimal, responsive, and powerful Jekyll theme for presenting professional writing.
Open Graph Description: A minimal, responsive, and powerful Jekyll theme for presenting professional writing.
Opengraph URL: /
Generator: Jekyll v4.4.1
Domain: CompetitiveLin.github.io
{"@context":"https://schema.org","@type":"WebSite","description":"A minimal, responsive, and powerful Jekyll theme for presenting professional writing.","headline":"Blogs","name":"CompetitiveLin","sameAs":["https://github.com/CompetitiveLin"],"url":"/"}
| None | text/html; charset=UTF-8 |
| theme-color | #ffffff |
| apple-mobile-web-app-capable | yes |
| apple-mobile-web-app-status-bar-style | black-translucent |
| og:locale | en |
| og:site_name | Blogs |
| og:type | website |
| twitter:card | summary |
| apple-mobile-web-app-title | Blogs |
| application-name | Blogs |
| msapplication-TileColor | #da532c |
| msapplication-config | /assets/img/favicons/browserconfig.xml |
Links:
| https://CompetitiveLin.github.io/ | |
| Blogs | https://CompetitiveLin.github.io/ |
| HOME | https://CompetitiveLin.github.io/ |
| CATEGORIES | https://CompetitiveLin.github.io/categories/ |
| TAGS | https://CompetitiveLin.github.io/tags/ |
| ARCHIVES | https://CompetitiveLin.github.io/archives/ |
| ABOUT | https://CompetitiveLin.github.io/about/ |
| https://github.com/CompetitiveLin | |
| https://twitter.com/CompetitiveLin | |
| javascript:location.href = 'mailto:' + ['zee_lin','foxmail.com'].join('@') | |
| https://CompetitiveLin.github.io/feed.xml | |
| SpringBoot Spring, SpringBoot, Spring MVC 区别: Spring框架(Framework)是最流行的Java应用程序开发框架。 Spring框架的主要功能是依赖项注入或控制反转(IoC)。 Spring MVC是Spring的一个MVC框架,包含前端视图,文件配置等。XML和config配置比较复杂。 Spring Boot 是为简化Spring配置的快速开发... Aug 10, 2023 Pinned | https://CompetitiveLin.github.io/posts/springboot/ |
| Redis 知识体系 单机 QPS 单机 QPS 能力参考范围为 8 - 10 万。 为什么 Redis 这么快 用 C 语言编写的,执行效率高 基于内存的数据库,避免磁盘IO操作 采用高效的数据结构 合理的数据编码,同样的数据结构在不同数据量的情况下采用不同的编码方式 采用单线程,避免上下文切换 多路IO复用,一个线程处理多个大量Socket请求。 虚拟内存 虚拟内存 R... Jul 6, 2023 Backend, Redis Pinned | https://CompetitiveLin.github.io/posts/redis/ |
| MySQL知识点汇总 单机QPS 单机 QPS 为 4k 左右。 MySQL select语句执行 解析阶段(Parse): 词法分析(Lexical Analysis) 语法分析(Syntax Analysis) 生成语法树(Parse Tree) 预处理阶段(Prepare): 检查表是否存在 检查... Jun 22, 2022 Backend, MySQL Pinned | https://CompetitiveLin.github.io/posts/mysql/ |
| Basics of Java 基本知识 三大特点:封装继承多态。 语法糖:switch支持String、泛型、自动拆装箱、变长参数、枚举、内部类、条件编译、断言、数值下划线、for-each、try-with-resources、Lambda表达式 装箱:Integer i = Integer.valueOf(10), 拆箱:int n = i.intValue() 反射:指动态获取的信息以及动态调用对象的方法的... Jun 21, 2022 Backend, Java Pinned | https://CompetitiveLin.github.io/posts/java/ |
| Java知识点记录博客 运算符优先级 优先级 运算符 1 ( ) [ ] . 2 ! ~ ++ – 3 * / % 4 + - 5 ... Jun 12, 2022 Backend, Java Pinned | https://CompetitiveLin.github.io/posts/java-syntax/ |
| It's a Long Story This post is to show Markdown syntax rendering on Chirpy, you can also use it as an example of writing. Now, let’s start looking at text and typography. Paragraph I wandered lonely as a cloud Th... May 25, 1999 Tutorial, Jekyll Pinned | https://CompetitiveLin.github.io/posts/it's-a-long-story/ |
| Zookeeper 学习 Zookeeper 是什么 Zookeeper 是一个分布式的协调服务,可以实现 统一配置管理。比如现在有A.yml,B.yml,C.yml配置文件,里面有一些公共的配置。将这些公共配置信息放到ZK中,修改ZK的信息,会通知A,B,C配置文件。 统一命名服务。节点存储ip地址,只需要访问Znode节点就可以获取这些ip地址。 统一集群管理。Kafka 的集群管理基于Zooke... Aug 11, 2024 Backend, Zookeeper | https://CompetitiveLin.github.io/posts/zookeeper/ |
| Go 语言学习 基本语法 变量初始化 var s string = "string" var s = "string" s := "string" 二维切片初始化 slice1 := make([][]bool, m) for i := range slice1 { slice1[i] = make([]bool, n) } 变量自增 只有后缀自增或自减,并且必须单独一行(除了在ra... Feb 27, 2024 Backend, Go | https://CompetitiveLin.github.io/posts/go/ |
| Note from Work Grafana 的数据显示会五分钟自动补全。当向 Prometheus 中插入某个时间戳的值时,其值会延续五分钟。 K8S 中的 Sidecar 模式:通常情况下一个 Pod 只包含一个容器,但是 Sidecar 模式是指为主容器提供额外功能(例如监控) 从而将其他容器加入到同一个 Pod 中。再例如 Istio 实现 Sidecar 自动注入。 ... Sep 7, 2023 | https://CompetitiveLin.github.io/posts/note-from-work/ |
| Kafka vs RocketMQ 基本概念 RocketMQ 由 Producer, Brocker, Consumer 组成 Producer 负责生产消息 Consumer 负责消费消息 Broker 负责存储消息,每一个 Broker 对应一台服务器但可以存储多个 Topic 的消息,每个 Topic 的消息也分片存储在不同的 Broker 里。 ... Aug 25, 2023 | https://CompetitiveLin.github.io/posts/kafka-vs-rocketmq/ |
| https://CompetitiveLin.github.io | |
| 1 | https://CompetitiveLin.github.io/ |
| 2 | https://CompetitiveLin.github.io/page2 |
| 3 | https://CompetitiveLin.github.io/page3 |
| https://CompetitiveLin.github.io/page2 | |
| ElasticSearch | https://CompetitiveLin.github.io/posts/elasticsearch/ |
| Note from Work | https://CompetitiveLin.github.io/posts/note-from-work/ |
| Redis 知识体系 | https://CompetitiveLin.github.io/posts/redis/ |
| SpringBoot | https://CompetitiveLin.github.io/posts/springboot/ |
| Go 语言学习 | https://CompetitiveLin.github.io/posts/go/ |
| backend | https://CompetitiveLin.github.io/tags/backend/ |
| c++ | https://CompetitiveLin.github.io/tags/c/ |
| syntax | https://CompetitiveLin.github.io/tags/syntax/ |
| windows 10 | https://CompetitiveLin.github.io/tags/windows-10/ |
| getting started | https://CompetitiveLin.github.io/tags/getting-started/ |
| branch | https://CompetitiveLin.github.io/tags/branch/ |
| commits | https://CompetitiveLin.github.io/tags/commits/ |
| github | https://CompetitiveLin.github.io/tags/github/ |
| java | https://CompetitiveLin.github.io/tags/java/ |
| python | https://CompetitiveLin.github.io/tags/python/ |
| backend | https://CompetitiveLin.github.io/tags/backend/ |
| c++ | https://CompetitiveLin.github.io/tags/c/ |
| syntax | https://CompetitiveLin.github.io/tags/syntax/ |
| windows 10 | https://CompetitiveLin.github.io/tags/windows-10/ |
| getting started | https://CompetitiveLin.github.io/tags/getting-started/ |
| branch | https://CompetitiveLin.github.io/tags/branch/ |
| commits | https://CompetitiveLin.github.io/tags/commits/ |
| github | https://CompetitiveLin.github.io/tags/github/ |
| java | https://CompetitiveLin.github.io/tags/java/ |
| python | https://CompetitiveLin.github.io/tags/python/ |
| CompetitiveLin | https://github.com/CompetitiveLin |
| Jekyll | https://jekyllrb.com |
| Chirpy | https://github.com/cotes2020/jekyll-theme-chirpy |
| https://CompetitiveLin.github.io |
Viewport: width=device-width, user-scalable=no initial-scale=1, shrink-to-fit=no, viewport-fit=cover