240 发简信
IP属地:上海
  • 一些学习经验

    认知-》行为比如,我知道学习写代码,比别的工作挣钱。所以我会去学习代码。 但是一定要有认知吗? 不一定。 比如衡水中学的军事化管理。那些兄弟,要做什么,做什么试卷,都被定死了...

  • 链接

    垃圾回收 https://www.cnblogs.com/zuoxiaolong/p/life51.html https://blog.csdn.net/qq_3456024...

  • 面试题

    JVM 作者:EnjoyMoving链接:https://www.zhihu.com/question/27339390/answer/204653701来源:知乎著作权归作...

  • mysql

    连接数据库 当登录的 mysql 是本机 mysql 时,可以忽略 host,仅仅使用以下代码即可 退出数据库 On Unix, you can also disconnec...

  • ORM

    ORM What is Object/Relational Mapping http://hibernate.org/orm/what-is-an-orm/Object Re...

  • RPC

    RPC(Remote procedure call) In distributed computing, a remote procedure call(RPC) is wh...

  • 资料

    https://medium.com/pantomath/how-we-use-grpc-to-build-a-client-server-system-in-go-dd20...

  • 安装

    服务器端安装 protobuf https://cn.aliyun.com/jiaocheng/166258.html

  • 120
    Operating System Concepts 9th

    第一章 计算机系统 硬件CPU、memory、input/output(I/O) devices为系统提供了基本的计算资源 操作系统控制硬件,调度应用程序 应用程序文字处理器...

  • 学习思路

    有朋友问我怎么学习,我的建议是,理解技术点的时候问自己四个问题:1)为什么是这样子?2)用来解决什么问题?3)原理是什么?4)缺点是什么? 只有真正找到了这些问题的答案,才能...

  • go圣经 第9章 Concurrency with Shared Variables

    In this chapter, we'll take a closer look at the mechanics of concurrency. In particula...

  • go 圣经 摘抄 第 8 章

    Chapter 8 Goroutines and Channels Go enable two styles of concurrent programming. This ...

  • Concurrency

    critical section Our goroutine, which is incrementing the data variables. Our if statem...

  • go channel close

    channel goroutine - 可以大致理解为一种轻量级的线程(或微线程),它是一种“分配在同一个地址空间内的,能够并行执行的函数”。同时,它是轻量级的,不需要像分配...

  • 日常debug

    Could not fetch URL https://pypi.python.org/simple/xlrd/: There was a problem confirmin...

  • go deadlock

    死锁 何谓死锁? 操作系统有讲过的,所有的线程或进程都在等待资源的释放。如上的程序中, 只有一个goroutine, 所以当你向里面加数据或者存数据的话,都会锁死信道, 并且...

  • 120
    googleio2012

    channel main 函数里,首先创建一个 channel 变量,channel 变量必须先创建,只申明,比如 var c chan string,会报错。用 go 语法...