Coder Social home page Coder Social logo

gitalk-comments's People

Watchers

 avatar

gitalk-comments's Issues

理解DevOps** | 夏虫不可语冰

https://zhangjiawang.github.io/posts/63225b76.html

什么是 DevOps DevOps(Development Oprations)是一种**或方法论,它涵盖开发、测试、运维的整个过程 DevOps 强调软件开发人员与软件测试、软件运维、质量保障(QA)部门之间有效的沟通与协作。强调通过自动化的方法管理软件变更、软件继承 使软件从构建到测试、发布更加快捷、可靠,最终按时交付软件

MySql 索引类型 BTree 和 Hash | 夏虫不可语冰

https://zhangjiawang.github.io/posts/60d2400d.html

MySql 索引类型 BTree 和 Hash索引是帮助mysql获取数据的数据结构。最常见的索引是Btree索引和Hash索引。主键索引叶子节点存储的就是 MySql 的整个数据行,普通索引的叶子节点存储的是索引列和主键值。 不同的引擎对于索引有不同的支持:Innodb 和 MyISAM 默认的索引是 Btree 索引;而 Mermory 默认的索引是 Hash 索引。 一、BTreeBTree

Go语言入门笔记(一) | 夏虫不可语冰

https://zhangjiawang.github.io/posts/1ef7bdfb.html

基础语法 import 原理 main 包中导入的包会被顺序导入 导入的包中依赖其他包,会首先导入依赖包,并初始化依赖包中的常量与变量,如果依赖包中有 init(),会自动�执行 init() 所有包导入完成后会对 main 包中的变量与常量进行初始化,然后执行 init(),最后执行 main() 一个包被导入多次则该包只会被导入一次 import 别名用法 别名 "package

解决 Redis 的 Big Key 问题 | 夏虫不可语冰

https://zhangjiawang.github.io/posts/ce974c7.html

Redis 的 Big Key 问题Big Key 问题 指 key 对应的 value 所占的内存空间比较大 对于字符串类型的 value,一般认为超过 10KB 属于 bigkey 非字符串类型(哈希、列表、集合、有序集合),体现在元素个数过多 造成的影响 内存空间不均匀(在 Redis Cluster 中,bigkey 会造成节点的内存空间使用不均匀) 超时阻塞:由于 Redis

docker-compose 搭建多版本 php 开发环境 | 夏虫不可语冰

https://zhangjiawang.github.io/posts/de1cc940.html

前言我的本地机器是 mac ,使用 vagrant + virtualbox 安装了一个 centos7 的虚拟机,利用 vagrant 的共享目录来实现 centos 和本地机器的代码同步。然后在虚拟机里使用 docker 来运行多个容器跑项目 由于公司业务复杂,不同的项目需要不同版本的 php 才能运行,故记录一下这次搭建开发环境的过程 这次准备要搭建的环境 nginx php5.3 php

数据库分库分表思路 | 夏虫不可语冰

https://zhangjiawang.github.io/posts/5c524f24.html

数据切分(Sharding)关系型数据库本身比较容易成为系统瓶颈,单机存储容量、连接数、处理能力都有限。当单表的数据量达到 1000W 或 100G 以后,由于查询维度较多,即使添加从库、优化索引,做很多操作时性能仍下降严重。此时就要考虑对其进行切分了,切分的目的就在于减少数据库的负担,缩短查询时间。 数据切分根据其切分类型,可以分为两种方式:垂直(纵向)切分和水平(横向)切分 一. 垂直(纵向)

mac vagrant nfs 挂载 | 夏虫不可语冰

https://zhangjiawang.github.io/posts/e2eef090.html

使用 vagrant + virtualbox 搭建的 php 开发环境,挂载共享目录的问题laravel 6.0 框架要求 php 版本大于 7.2 ,在成功升级 7.3 以后,框架终于搭建成功,但是发现一个裸框架首页加载居然需要 1s 多的时间,不科学,很不科学,太不科学了。所以开始动手…… 首先要把虚拟机的网络设置成 :private_network 模式

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.