Coder Social home page Coder Social logo

fantasy-gitalk's People

Watchers

 avatar

fantasy-gitalk's Issues

MySQL连接器的工作 - fioepq9 的博客

https://fantasy-gules.vercel.app/2023/09/07/MySQL%E8%BF%9E%E6%8E%A5%E5%99%A8%E7%9A%84%E5%B7%A5%E4%BD%9C/

MySQL 连接器 MySQL 的连接器是 MySQL Server 层的第一个模块。当我们使用 MySQL 客户端连接 MySQL 服务器时,负责处理连接请求的就是连接器模块。 连接建立的过程 TCP 三次握手。因为 MySQL 是基于 TCP 协议进行传输的,所以建立连接时首先要进行 TCP 三次握手的过程。 连接器验证用户名和密码。如果用户名或密码不正确,返回错误 Access denie

MySQL的查询缓存 - fioepq9 的博客

https://fantasy-gules.vercel.app/2023/09/07/MySQL%E7%9A%84%E6%9F%A5%E8%AF%A2%E7%BC%93%E5%AD%98/

MySQL 8.0 版本已经把这个模块删掉了。MySQL 8.0 之前的版本可以通过设置 query_cache_type 为 DEMAND 关闭这个模块。 MySQL 接收到客户端发来的 SQL 语句后,会首先解析出语句的第一个字段,如果其是 SELECT 就会进入查询缓存模块。 查询缓存以 KV 形式保存在内存中,Key 为 SQL 查询语句,V

Go的循环变量捕获问题 - fioepq9 的博客

https://fantasy-gules.vercel.app/2023/09/06/Go%E7%9A%84%E5%BE%AA%E7%8E%AF%E5%8F%98%E9%87%8F%E6%8D%95%E8%8E%B7%E9%97%AE%E9%A2%98/

介绍 https://github.com/golang/go/wiki/CommonMistakes 这是个在并发编程中非常常见的错误,几乎所有人都犯过这个错误。 https://github.com/golang/go/wiki/LoopvarExperiment 不过,Go 官方计划在 1.22 解决这个问题。 循环变量捕获 以下这段程序的输出是不可预知的。 123456789101

Go中slice和数组的异同 - Blog

https://fantasy-gules.vercel.app/2023/09/04/Go%E4%B8%ADslice%E5%92%8C%E6%95%B0%E7%BB%84%E7%9A%84%E5%BC%82%E5%90%8C/?

概述slice 的底层数据由数组保存,它是对数组的封装,描述一个数组的片段。 数组的性质 定长。数组的长度在定义好之后,不能够再被更改。 数组的长度被认为是类型的一部分,相同元素不同长度的数组不是同一个类型。 slice 的性质 动态扩容。 切片的类型与长度无关。 slice 实际上是一个结构体,包含三个字段:长度、容量、底层数组的指针。 动态扩容机制 $GOROOT/src&#x2

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.