<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>所有文章 - Windvalley</title><link>https://windvalley.github.io/posts/</link><description>所有文章 | Windvalley</description><generator>Hugo -- gohugo.io</generator><language>zh-CN</language><managingEditor>levinwang6@gmail.com (windvalley)</managingEditor><webMaster>levinwang6@gmail.com (windvalley)</webMaster><copyright>This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.</copyright><lastBuildDate>Fri, 10 Feb 2023 21:11:38 +0800</lastBuildDate><atom:link href="https://windvalley.github.io/posts/" rel="self" type="application/rss+xml"/><item><title>使用 GoFrame V2 高效高质量开发后端项目</title><link>https://windvalley.github.io/backend-project-development-with-goframev2/</link><pubDate>Fri, 10 Feb 2023 21:11:38 +0800</pubDate><author>作者</author><guid>https://windvalley.github.io/backend-project-development-with-goframev2/</guid><description>gf2-demo 是一个基于 GoFrameV2 用来快速开发后端服务的脚手架, 目标使开发者只需关注业务逻辑的编写, 快速且规范地交付项目. 项目特性 优化工程目录结构, 使支持多个可</description></item><item><title>使用 Gopass 管理你的密码</title><link>https://windvalley.github.io/gopass/</link><pubDate>Sun, 11 Dec 2022 22:53:45 +0800</pubDate><author>作者</author><guid>https://windvalley.github.io/gopass/</guid><description>本文基于 MacOS 系统说明安装和使用 gopass 工具. 终端管理 gopass 安装 gopass 二进制安装 1 2 3 4 5 6 7 8 9 mkdir tmp &amp;amp;&amp;amp; cd tmp # 从官网找最新稳定版下载链接进行下载. wget -c https://github.com/gopasspw/gopass/releases/download/v1.15.0/gopass-1.15.0-darwin-amd64.tar.gz tar zxf gopass-1.15.0-darwin-amd64.tar.gz</description></item><item><title>情绪管理实践笔记</title><link>https://windvalley.github.io/emotion-management/</link><pubDate>Tue, 16 Aug 2022 13:10:29 +0800</pubDate><author>作者</author><guid>https://windvalley.github.io/emotion-management/</guid><description>情绪创可贴(能力) 能力与情绪的关系 产生消极情绪的底层原因是能力的缺失: 焦虑情绪(心烦), 是应对未来不确定性的能力的缺失; 后悔情绪(抑郁), 是</description></item><item><title>使用Markdown编写漂亮的文档</title><link>https://windvalley.github.io/markdown-cheatsheet/</link><pubDate>Tue, 08 Mar 2022 10:54:53 +0800</pubDate><author>作者</author><guid>https://windvalley.github.io/markdown-cheatsheet/</guid><description><![CDATA[字符串高亮 1 2 3 4 5 I need to highlight these ==very important words==. 或 I need to highlight these &lt;mark&gt;very important words&lt;/mark&gt;. I need to highlight these very important words. 粗体字和斜体字 1 2 3 **bold text** *italicized text* This text is ***really important***. bold text italicized text This text is really important. 删除线 1 ~~The world is]]></description></item><item><title>SRE体系实践脑图</title><link>https://windvalley.github.io/sre-mindmaps/</link><pubDate>Tue, 08 Feb 2022 15:34:23 +0800</pubDate><author>作者</author><guid>https://windvalley.github.io/sre-mindmaps/</guid><description>SRE 体系实践脑图 https://www.processon.com/view/link/62f9f6221e085337062f848f</description></item><item><title>OpenResty数据共享的几种方式</title><link>https://windvalley.github.io/openresty-data-share/</link><pubDate>Mon, 22 Jul 2019 23:03:32 +0800</pubDate><author>作者</author><guid>https://windvalley.github.io/openresty-data-share/</guid><description>ngx.var 变量 数据生命周期: 同一个请求的所有执行阶段, 请求结束后自动销毁, 另外, 可以跨 location, 也就是说在内部重定向(ngx.exec)或外部重定向(ngx</description></item><item><title>如何进行C100K性能测试</title><link>https://windvalley.github.io/c100k-performance-test/</link><pubDate>Thu, 11 Jul 2019 11:51:34 +0800</pubDate><author>作者</author><guid>https://windvalley.github.io/c100k-performance-test/</guid><description>测试前环境准备 关闭SElinux: sestatus | grep -q disabled || setenforce 0 设置最大打开文件数: sysctl -w fs.file-max=6552016 设置单个进程最大打开文件数: ulimit -n 32768 使用c1000k工具查看当前系</description></item><item><title>如何调试OpenResty的Lua代码</title><link>https://windvalley.github.io/openresty-debug/</link><pubDate>Wed, 10 Jul 2019 23:56:36 +0800</pubDate><author>作者</author><guid>https://windvalley.github.io/openresty-debug/</guid><description>在适当位置打印输出 使用print 使用print(), 相当于ngx.log(ngx.NOTICE, ...), 适用于所有阶段. nginx.conf 1 2 # 设置为notice</description></item><item><title>OpenResty中大型项目的代码组织方式介绍</title><link>https://windvalley.github.io/openresty-big-project-code-orgnization/</link><pubDate>Mon, 01 Jul 2019 14:34:54 +0800</pubDate><author>作者</author><guid>https://windvalley.github.io/openresty-big-project-code-orgnization/</guid><description>适用于中大型项目, 包含多个功能模块, 每个功能模块需要在各自的不同执行阶段通过回调函数传参的方式来高效的共享数据. 具体的某个功能模块文件举例 lua/modules/module1.lua</description></item><item><title>为OpenResty封装一个更易用更健壮的redis</title><link>https://windvalley.github.io/openresty-redis-wrap/</link><pubDate>Sat, 29 Jun 2019 16:48:06 +0800</pubDate><author>作者</author><guid>https://windvalley.github.io/openresty-redis-wrap/</guid><description>功能 封装一个代码清晰简单易用的redis 完整代码 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46</description></item></channel></rss>