├── Algorithm ├── 一致性hash.md └── 哈希算法.md ├── Architecture ├── 业务 │ ├── README.md │ ├── 中间件 │ │ └── 流量控制.md │ ├── 公共API │ │ └── 语音 │ │ │ ├── HZRecorder.js │ │ │ ├── baidu.php │ │ │ └── 语音.md │ ├── 具体业务 │ │ ├── 其他 │ │ │ └── SEO │ │ │ │ ├── 360.xml │ │ │ │ └── RSS.md │ │ ├── 搜索 │ │ │ ├── Logstash.md │ │ │ ├── Search.md │ │ │ ├── Sphinx.md │ │ │ ├── 产品.md │ │ │ ├── 分词学习.md │ │ │ └── 性能优化.md │ │ ├── 爬虫 │ │ │ ├── README.md │ │ │ ├── Spider.md │ │ │ └── 数据采集.md │ │ └── 电商 │ │ │ ├── 并发.md │ │ │ └── 怎么设置多级.md │ ├── 方案设计 │ │ ├── 扩展性 │ │ │ └── 设计模式.md │ │ ├── 高并发 │ │ │ └── php-multi.md │ │ └── 高性能 │ │ │ └── Performance.md │ ├── 用户及权限 │ │ ├── Outh.md │ │ ├── 权限控制.md │ │ └── 登录.md │ └── 通用 │ │ ├── 浏览器证书.md │ │ └── 滑块验证码.md └── 数据 │ ├── 数据可视化.md │ └── 数据周报.md ├── Cache ├── Memcached.md ├── Memcached使用.md ├── MongoDB入门.md ├── README.md └── 对比.md ├── Code ├── README.md ├── 代码要求.md └── 代码调试.md ├── Codeigniter ├── Common.md ├── MVC.md ├── ORM的接口.md ├── README.md ├── 安全性.md ├── 缓存机制.md ├── 路由.md ├── 配置管理.md └── 钩子.md ├── DesignPatterns └── DesignPatterns.md ├── Docker ├── 0. 简介.md ├── 1. 安装.md ├── 2. 基本概念.md ├── 3. 镜像操作.md ├── 4. 容器操作.md ├── 5. 仓库操作.md ├── 6. 数据卷.md ├── 7. 资源列表.md ├── 8. 常见问题.md ├── 9. 应用.md └── README.md ├── Git ├── SourceTree.md ├── 代码回滚.md ├── 多版本工作流.md ├── 工作流.md └── 快速入门Git.md ├── Linux ├── Apache 和 nginx.md ├── Vim批量替换.md ├── 命令.md ├── 安装扩展.md ├── 权限问题.md └── 解析配置.md ├── Manual └── Manual.md ├── MicroServices ├── 1. 服务框架.md ├── 2. 服务支撑.md ├── 3. 服务安全.md ├── 4. 后台服务.md ├── 5. 服务容错.md ├── 6. 服务监控.md ├── 7. 服务部署平台.md ├── README.md ├── x1. API网关.md ├── x2. 服务发现.md └── x3 监控.md ├── MySQL ├── 1. Mysql.md ├── 2. 数据库操作.md ├── 3. 数据类型.md ├── 4. 数据库设计.md ├── 5. Mysql索引.md ├── x1. 常见问题.md ├── x2 参考资料.md ├── x3 资料推荐.md └── 性能优化 │ ├── 1. 执行优化.md │ ├── 2. 架构优化.md │ └── x3 资料推荐.md ├── Networks ├── Curl.md ├── IO编程 │ ├── IO.md │ ├── IO模型.md │ ├── IO监控与分析.md │ └── IO编程.md ├── 内网和外网.md ├── 协程.md └── 进程和线程 │ ├── 多进程和多线程.md │ └── 进程切换.md ├── Notes ├── AI.md ├── CSRF.md ├── Excel数据合并.md ├── HTTP协议入门.md ├── Lisp思想.md ├── NVM.md ├── Websocket.md ├── XSS.md ├── github工具集锦.md ├── openresty入门.md ├── 异步编程.md ├── 微信开发.md ├── 正则表达式.md ├── 环境搭建.md └── 高阶函数.md ├── PHP ├── AOP.md ├── GET与POST的区别.md ├── ORM.md ├── PHP升级可能导致的坑.md ├── PSR.md ├── Session 和 Cookie.md ├── 代码规范.md ├── 参考资料.md ├── 字符串.md ├── 小知识点.md ├── 常用函数.md ├── 常见问题.md ├── 弱语言类型.md ├── 敏感词过滤.md ├── 浮点数.md └── 生成器.md ├── Swoft ├── 0. 安装.md ├── 1. 目录结构.md ├── 2. 生命周期.md ├── 3. HTTP服务.md ├── 4. 缓存.md ├── 6. 视图.md ├── README.md ├── x1. 问题.md └── 数据库操作 │ ├── Dao.md │ ├── x0 学习资料.md │ └── 数据库操作.md ├── Tools ├── Markdown.md ├── Postman.md ├── README.md ├── Sublime.md └── 思维导图.md └── Vuejs ├── Vue入门.md └── 开源项目库汇总.md /Algorithm/一致性hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Algorithm/一致性hash.md -------------------------------------------------------------------------------- /Algorithm/哈希算法.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Algorithm/哈希算法.md -------------------------------------------------------------------------------- /Architecture/业务/README.md: -------------------------------------------------------------------------------- 1 | # 业务 2 | 3 | ## 思考 4 | 5 | 1. 不确定的逻辑交给php,其余的根据场景用中间件或者高性能后端服务来解决。 -------------------------------------------------------------------------------- /Architecture/业务/中间件/流量控制.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Architecture/业务/公共API/语音/HZRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/业务/公共API/语音/HZRecorder.js -------------------------------------------------------------------------------- /Architecture/业务/公共API/语音/baidu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/业务/公共API/语音/baidu.php -------------------------------------------------------------------------------- /Architecture/业务/公共API/语音/语音.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/业务/公共API/语音/语音.md -------------------------------------------------------------------------------- /Architecture/业务/具体业务/其他/SEO/360.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/业务/具体业务/其他/SEO/360.xml -------------------------------------------------------------------------------- /Architecture/业务/具体业务/其他/SEO/RSS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/业务/具体业务/其他/SEO/RSS.md -------------------------------------------------------------------------------- /Architecture/业务/具体业务/搜索/Logstash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/业务/具体业务/搜索/Logstash.md -------------------------------------------------------------------------------- /Architecture/业务/具体业务/搜索/Search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/业务/具体业务/搜索/Search.md -------------------------------------------------------------------------------- /Architecture/业务/具体业务/搜索/Sphinx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/业务/具体业务/搜索/Sphinx.md -------------------------------------------------------------------------------- /Architecture/业务/具体业务/搜索/产品.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/业务/具体业务/搜索/产品.md -------------------------------------------------------------------------------- /Architecture/业务/具体业务/搜索/分词学习.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Architecture/业务/具体业务/搜索/性能优化.md: -------------------------------------------------------------------------------- 1 | # 性能优化 2 | 3 | ## 对结果进行缓存 -------------------------------------------------------------------------------- /Architecture/业务/具体业务/爬虫/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/业务/具体业务/爬虫/README.md -------------------------------------------------------------------------------- /Architecture/业务/具体业务/爬虫/Spider.md: -------------------------------------------------------------------------------- 1 | # 爬虫 2 | 3 | 1. 抓取别太频繁 4 | 2. 能抓列表页就别抓内页 5 | 3. ip库 6 | 4. 走缓存,写到数据库中。 -------------------------------------------------------------------------------- /Architecture/业务/具体业务/爬虫/数据采集.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/业务/具体业务/爬虫/数据采集.md -------------------------------------------------------------------------------- /Architecture/业务/具体业务/电商/并发.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Architecture/业务/具体业务/电商/怎么设置多级.md: -------------------------------------------------------------------------------- 1 | # 怎么设置多级? 2 | 3 | 1. 模型是树 4 | 2. 当前所在等级,以及上级的关联关系。 -------------------------------------------------------------------------------- /Architecture/业务/方案设计/扩展性/设计模式.md: -------------------------------------------------------------------------------- 1 | # 设计模式 2 | 3 | ## 背景 4 | 1. 对接多家保险公司 5 | 6 | 7 | -------------------------------------------------------------------------------- /Architecture/业务/方案设计/高并发/php-multi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/业务/方案设计/高并发/php-multi.md -------------------------------------------------------------------------------- /Architecture/业务/方案设计/高性能/Performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/业务/方案设计/高性能/Performance.md -------------------------------------------------------------------------------- /Architecture/业务/用户及权限/Outh.md: -------------------------------------------------------------------------------- 1 | # Outh 2 | 3 | ## 文章 4 | 5 | * [一张图搞定OAuth2.0](https://www.cnblogs.com/flashsun/p/7424071.html) -------------------------------------------------------------------------------- /Architecture/业务/用户及权限/权限控制.md: -------------------------------------------------------------------------------- 1 | # 权限控制 2 | 3 | ## 参考资料 4 | * [权限系统(SAM)](https://tech.youzan.com/sam/) -------------------------------------------------------------------------------- /Architecture/业务/用户及权限/登录.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/业务/用户及权限/登录.md -------------------------------------------------------------------------------- /Architecture/业务/通用/浏览器证书.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/业务/通用/浏览器证书.md -------------------------------------------------------------------------------- /Architecture/业务/通用/滑块验证码.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/业务/通用/滑块验证码.md -------------------------------------------------------------------------------- /Architecture/数据/数据可视化.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Architecture/数据/数据周报.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Architecture/数据/数据周报.md -------------------------------------------------------------------------------- /Cache/Memcached.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Cache/Memcached.md -------------------------------------------------------------------------------- /Cache/Memcached使用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Cache/Memcached使用.md -------------------------------------------------------------------------------- /Cache/MongoDB入门.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Cache/README.md -------------------------------------------------------------------------------- /Cache/对比.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Cache/对比.md -------------------------------------------------------------------------------- /Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Code/README.md -------------------------------------------------------------------------------- /Code/代码要求.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Code/代码要求.md -------------------------------------------------------------------------------- /Code/代码调试.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Code/代码调试.md -------------------------------------------------------------------------------- /Codeigniter/Common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Codeigniter/Common.md -------------------------------------------------------------------------------- /Codeigniter/MVC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Codeigniter/MVC.md -------------------------------------------------------------------------------- /Codeigniter/ORM的接口.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Codeigniter/ORM的接口.md -------------------------------------------------------------------------------- /Codeigniter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Codeigniter/README.md -------------------------------------------------------------------------------- /Codeigniter/安全性.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Codeigniter/安全性.md -------------------------------------------------------------------------------- /Codeigniter/缓存机制.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Codeigniter/缓存机制.md -------------------------------------------------------------------------------- /Codeigniter/路由.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Codeigniter/路由.md -------------------------------------------------------------------------------- /Codeigniter/配置管理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Codeigniter/配置管理.md -------------------------------------------------------------------------------- /Codeigniter/钩子.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Codeigniter/钩子.md -------------------------------------------------------------------------------- /DesignPatterns/DesignPatterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/DesignPatterns/DesignPatterns.md -------------------------------------------------------------------------------- /Docker/0. 简介.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Docker/0. 简介.md -------------------------------------------------------------------------------- /Docker/1. 安装.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Docker/1. 安装.md -------------------------------------------------------------------------------- /Docker/2. 基本概念.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Docker/2. 基本概念.md -------------------------------------------------------------------------------- /Docker/3. 镜像操作.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Docker/3. 镜像操作.md -------------------------------------------------------------------------------- /Docker/4. 容器操作.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Docker/4. 容器操作.md -------------------------------------------------------------------------------- /Docker/5. 仓库操作.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Docker/5. 仓库操作.md -------------------------------------------------------------------------------- /Docker/6. 数据卷.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Docker/6. 数据卷.md -------------------------------------------------------------------------------- /Docker/7. 资源列表.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Docker/7. 资源列表.md -------------------------------------------------------------------------------- /Docker/8. 常见问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Docker/8. 常见问题.md -------------------------------------------------------------------------------- /Docker/9. 应用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Docker/9. 应用.md -------------------------------------------------------------------------------- /Docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Docker/README.md -------------------------------------------------------------------------------- /Git/SourceTree.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Git/代码回滚.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Git/代码回滚.md -------------------------------------------------------------------------------- /Git/多版本工作流.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Git/多版本工作流.md -------------------------------------------------------------------------------- /Git/工作流.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Git/工作流.md -------------------------------------------------------------------------------- /Git/快速入门Git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Git/快速入门Git.md -------------------------------------------------------------------------------- /Linux/Apache 和 nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Linux/Apache 和 nginx.md -------------------------------------------------------------------------------- /Linux/Vim批量替换.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Linux/Vim批量替换.md -------------------------------------------------------------------------------- /Linux/命令.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Linux/命令.md -------------------------------------------------------------------------------- /Linux/安装扩展.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Linux/安装扩展.md -------------------------------------------------------------------------------- /Linux/权限问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Linux/权限问题.md -------------------------------------------------------------------------------- /Linux/解析配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Linux/解析配置.md -------------------------------------------------------------------------------- /Manual/Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Manual/Manual.md -------------------------------------------------------------------------------- /MicroServices/1. 服务框架.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MicroServices/1. 服务框架.md -------------------------------------------------------------------------------- /MicroServices/2. 服务支撑.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MicroServices/3. 服务安全.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MicroServices/3. 服务安全.md -------------------------------------------------------------------------------- /MicroServices/4. 后台服务.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MicroServices/4. 后台服务.md -------------------------------------------------------------------------------- /MicroServices/5. 服务容错.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MicroServices/5. 服务容错.md -------------------------------------------------------------------------------- /MicroServices/6. 服务监控.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MicroServices/6. 服务监控.md -------------------------------------------------------------------------------- /MicroServices/7. 服务部署平台.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MicroServices/7. 服务部署平台.md -------------------------------------------------------------------------------- /MicroServices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MicroServices/README.md -------------------------------------------------------------------------------- /MicroServices/x1. API网关.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MicroServices/x1. API网关.md -------------------------------------------------------------------------------- /MicroServices/x2. 服务发现.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MicroServices/x2. 服务发现.md -------------------------------------------------------------------------------- /MicroServices/x3 监控.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MicroServices/x3 监控.md -------------------------------------------------------------------------------- /MySQL/1. Mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MySQL/1. Mysql.md -------------------------------------------------------------------------------- /MySQL/2. 数据库操作.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MySQL/2. 数据库操作.md -------------------------------------------------------------------------------- /MySQL/3. 数据类型.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MySQL/3. 数据类型.md -------------------------------------------------------------------------------- /MySQL/4. 数据库设计.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MySQL/4. 数据库设计.md -------------------------------------------------------------------------------- /MySQL/5. Mysql索引.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MySQL/5. Mysql索引.md -------------------------------------------------------------------------------- /MySQL/x1. 常见问题.md: -------------------------------------------------------------------------------- 1 | # innodb 和 myisam 区别 2 | 3 | ## 参考资料 4 | * [MySQL存储引擎MyISAM与InnoDB区别总结整理](http://blog.csdn.net/xlgen157387/article/details/68978320) -------------------------------------------------------------------------------- /MySQL/x2 参考资料.md: -------------------------------------------------------------------------------- 1 | 2 | * [mysql 数据类型](http://www.cnblogs.com/zbseoag/archive/2013/03/19/2970004.html) -------------------------------------------------------------------------------- /MySQL/x3 资料推荐.md: -------------------------------------------------------------------------------- 1 | 2 | * [MySQL入门教程](https://github.com/jaywcjlove/mysql-tutorial) -------------------------------------------------------------------------------- /MySQL/性能优化/1. 执行优化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MySQL/性能优化/1. 执行优化.md -------------------------------------------------------------------------------- /MySQL/性能优化/2. 架构优化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/MySQL/性能优化/2. 架构优化.md -------------------------------------------------------------------------------- /MySQL/性能优化/x3 资料推荐.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Networks/Curl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Networks/Curl.md -------------------------------------------------------------------------------- /Networks/IO编程/IO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Networks/IO编程/IO.md -------------------------------------------------------------------------------- /Networks/IO编程/IO模型.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Networks/IO编程/IO模型.md -------------------------------------------------------------------------------- /Networks/IO编程/IO监控与分析.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Networks/IO编程/IO监控与分析.md -------------------------------------------------------------------------------- /Networks/IO编程/IO编程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Networks/IO编程/IO编程.md -------------------------------------------------------------------------------- /Networks/内网和外网.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Networks/内网和外网.md -------------------------------------------------------------------------------- /Networks/协程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Networks/协程.md -------------------------------------------------------------------------------- /Networks/进程和线程/多进程和多线程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Networks/进程和线程/多进程和多线程.md -------------------------------------------------------------------------------- /Networks/进程和线程/进程切换.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Networks/进程和线程/进程切换.md -------------------------------------------------------------------------------- /Notes/AI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Notes/AI.md -------------------------------------------------------------------------------- /Notes/CSRF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Notes/CSRF.md -------------------------------------------------------------------------------- /Notes/Excel数据合并.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Notes/Excel数据合并.md -------------------------------------------------------------------------------- /Notes/HTTP协议入门.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Notes/Lisp思想.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Notes/Lisp思想.md -------------------------------------------------------------------------------- /Notes/NVM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Notes/NVM.md -------------------------------------------------------------------------------- /Notes/Websocket.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Notes/XSS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Notes/XSS.md -------------------------------------------------------------------------------- /Notes/github工具集锦.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Notes/github工具集锦.md -------------------------------------------------------------------------------- /Notes/openresty入门.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Notes/openresty入门.md -------------------------------------------------------------------------------- /Notes/异步编程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Notes/异步编程.md -------------------------------------------------------------------------------- /Notes/微信开发.md: -------------------------------------------------------------------------------- 1 | #微信开发 2 | 3 | ## 示例 4 | http://demo.open.weixin.qq.com/jssdk -------------------------------------------------------------------------------- /Notes/正则表达式.md: -------------------------------------------------------------------------------- 1 | # 正则表达式 2 | 3 | -------------------------------------------------------------------------------- /Notes/环境搭建.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Notes/环境搭建.md -------------------------------------------------------------------------------- /Notes/高阶函数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Notes/高阶函数.md -------------------------------------------------------------------------------- /PHP/AOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/PHP/AOP.md -------------------------------------------------------------------------------- /PHP/GET与POST的区别.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/PHP/GET与POST的区别.md -------------------------------------------------------------------------------- /PHP/ORM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/PHP/ORM.md -------------------------------------------------------------------------------- /PHP/PHP升级可能导致的坑.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/PHP/PHP升级可能导致的坑.md -------------------------------------------------------------------------------- /PHP/PSR.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PHP/Session 和 Cookie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/PHP/Session 和 Cookie.md -------------------------------------------------------------------------------- /PHP/代码规范.md: -------------------------------------------------------------------------------- 1 | # 代码规范 2 | 3 | psr -------------------------------------------------------------------------------- /PHP/参考资料.md: -------------------------------------------------------------------------------- 1 | * [PHP中的 抽象类(abstract class)和 接口(interface)](http://blog.csdn.net/sunlylorn/article/details/6124319) 2 | -------------------------------------------------------------------------------- /PHP/字符串.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PHP/小知识点.md: -------------------------------------------------------------------------------- 1 | 2 | 1. 对象清晰用对象,否则用函数(无状态)。 -------------------------------------------------------------------------------- /PHP/常用函数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/PHP/常用函数.md -------------------------------------------------------------------------------- /PHP/常见问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/PHP/常见问题.md -------------------------------------------------------------------------------- /PHP/弱语言类型.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PHP/敏感词过滤.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/PHP/敏感词过滤.md -------------------------------------------------------------------------------- /PHP/浮点数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/PHP/浮点数.md -------------------------------------------------------------------------------- /PHP/生成器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/PHP/生成器.md -------------------------------------------------------------------------------- /Swoft/0. 安装.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Swoft/0. 安装.md -------------------------------------------------------------------------------- /Swoft/1. 目录结构.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Swoft/1. 目录结构.md -------------------------------------------------------------------------------- /Swoft/2. 生命周期.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Swoft/2. 生命周期.md -------------------------------------------------------------------------------- /Swoft/3. HTTP服务.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Swoft/3. HTTP服务.md -------------------------------------------------------------------------------- /Swoft/4. 缓存.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Swoft/4. 缓存.md -------------------------------------------------------------------------------- /Swoft/6. 视图.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Swoft/README.md: -------------------------------------------------------------------------------- 1 | # Swoft 2 | 3 | ## 怎么告诉别人它是什么?用来干嘛的? 4 | 1. 关键词:异步非阻塞 IO, 协程 5 | 6 | ## 性能好,好在哪? 7 | -------------------------------------------------------------------------------- /Swoft/x1. 问题.md: -------------------------------------------------------------------------------- 1 | 2 | ## 配置可以升级成数组 3 | 4 | ## -------------------------------------------------------------------------------- /Swoft/数据库操作/Dao.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Swoft/数据库操作/Dao.md -------------------------------------------------------------------------------- /Swoft/数据库操作/x0 学习资料.md: -------------------------------------------------------------------------------- 1 | # 学习资料 2 | 3 | ## 4 | * [Swoole 在 Swoft 中的应用](https://segmentfault.com/a/1190000013153231) -------------------------------------------------------------------------------- /Swoft/数据库操作/数据库操作.md: -------------------------------------------------------------------------------- 1 | # 数据库操作 2 | 3 | ## 配置 4 | app/config/properties/db.php -------------------------------------------------------------------------------- /Tools/Markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Tools/Markdown.md -------------------------------------------------------------------------------- /Tools/Postman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Tools/Postman.md -------------------------------------------------------------------------------- /Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Tools/README.md -------------------------------------------------------------------------------- /Tools/Sublime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Tools/Sublime.md -------------------------------------------------------------------------------- /Tools/思维导图.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Tools/思维导图.md -------------------------------------------------------------------------------- /Vuejs/Vue入门.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Vuejs/Vue入门.md -------------------------------------------------------------------------------- /Vuejs/开源项目库汇总.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/storyflow/handbook/HEAD/Vuejs/开源项目库汇总.md --------------------------------------------------------------------------------