随笔分类 -  开源组件

摘要:原文转至:https://www.thegeekdiary.com/beginners-guide-to-yum-configuration/ All software on a Linux system is divided into packages that can be installed, 阅读全文
posted @ 2019-10-16 13:47 dk_tuke 阅读(419) 评论(0) 推荐(0)
摘要:1. 介绍 由于CGI解释器的反复加载会使CGI性能低下,FastCGI可以将CGI解释器保持在内存中, 提高性能相关地址:https://fastcgi-archives.github.io 2. Fastcgi特点: 性能 简单,容易移植 语言无关 进程隔离 通用性,主流WebServer都支持 阅读全文
posted @ 2019-10-10 22:15 dk_tuke 阅读(846) 评论(0) 推荐(0)
摘要:Redis集群->拓扑结构 Redis 集群是一个网状结构,无中心结构,每个节点都通过 TCP 连接跟其他每个节点连接。在一个有 N 个节点的集群中,每个节点都有 N-1 个流出的 TCP 连接,和 N-1 个流入的连接。 这些 TCP 连接会永久保持,并不是按需创建的。节点们使用一个 gossip 阅读全文
posted @ 2019-10-10 22:06 dk_tuke 阅读(887) 评论(1) 推荐(0)
摘要:1.格式化组件 - fmt github:https://github.com/fmtlib/fmt Motivation: So why yet another formatting library? There are plenty of methods for doing this task, 阅读全文
posted @ 2019-09-25 20:34 dk_tuke 阅读(312) 评论(0) 推荐(0)