会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
孙龙 程序员
少时总觉为人易,华年方知立业难
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
28
29
30
31
32
33
34
35
36
···
73
下一页
2019年8月1日
cronexpr任务调度
摘要: 调度多个cron任务
阅读全文
posted @ 2019-08-01 23:02 孙龙-程序员
阅读(491)
评论(0)
推荐(0)
编辑
执行脚本命令
摘要: GOROOT=D:\go #gosetup GOPATH=D:\gospace;C:\Users\Administrator\go #gosetup D:\go\bin\go.exe build -i -o C:\Users\Administrator\AppData\Local\Temp\___g
阅读全文
posted @ 2019-08-01 22:03 孙龙-程序员
阅读(743)
评论(0)
推荐(0)
编辑
2019年7月31日
github结合TortoiseGit使用sshkey,无需输入账号和密码
摘要: 找到TortoiseGit自带的Puttygen工具 打开之后,选择Generate(生成的过程中记得移动鼠标) 下面是github添加公钥的地方,要注意提示 保存之前,先设置一个私钥的密码【上面的passphrase】,目的是防止其他人使用你的私钥胡乱提交 将私钥加到远端设置中 注意1 远端只有在
阅读全文
posted @ 2019-07-31 11:41 孙龙-程序员
阅读(88)
评论(0)
推荐(0)
编辑
2019年7月30日
golang 上下文context用法详解
摘要: 背景 在go服务器中,对于每个请求的request都是在单独的goroutine中进行的,处理一个request也可能设计多个goroutine之间的交互, 使用context可以使开发者方便的在这些goroutine里传递request相关的数据、取消goroutine的signal或截止日期。
阅读全文
posted @ 2019-07-30 20:31 孙龙-程序员
阅读(20688)
评论(2)
推荐(3)
编辑
2019年7月28日
httpserver支持路由传输控制器
摘要: main.go
阅读全文
posted @ 2019-07-28 21:22 孙龙-程序员
阅读(398)
评论(0)
推荐(0)
编辑
httpserver实现简单的上下文
摘要: package main import ( "net/http" "com.jtthink.net/myhttpserver/core" ) type MyHandler struct { } func(*MyHandler) ServeHTTP(writer http.ResponseWriter
阅读全文
posted @ 2019-07-28 18:54 孙龙-程序员
阅读(261)
评论(0)
推荐(0)
编辑
httpserver实现简单的上下文
摘要: package main import ( "net/http" "com.jtthink.net/myhttpserver/core" ) type MyHandler struct { } func(*MyHandler) ServeHTTP(writer http.ResponseWriter
阅读全文
posted @ 2019-07-28 18:47 孙龙-程序员
阅读(131)
评论(0)
推荐(0)
编辑
2019年7月27日
httpserver
摘要: 快速创建一个httpserver 路由 设置cookie 注销 判断登录 package main import ( "net/http" "time" ) type MyHandler struct { } func(*MyHandler) ServeHTTP(writer http.Respon
阅读全文
posted @ 2019-07-27 15:08 孙龙-程序员
阅读(402)
评论(0)
推荐(0)
编辑
2019年7月24日
多协成利用互斥锁按顺序执行读取文件
摘要: text文本 1、动态规划比递归快-LeetCode91-解码方法2、Linux内存描述之内存节点node--Linux内存管理3、笔试题—字符串常见的算法题集锦4、机器学习系列(14)_SVM碎碎念part2:SVM中的向量与空间距离5、大数运算(7)——大数阶乘(求阶乘)6、经典设计模式实战演练
阅读全文
posted @ 2019-07-24 21:28 孙龙-程序员
阅读(365)
评论(0)
推荐(0)
编辑
2019年7月23日
channel补充
摘要: 无缓冲管道 : 指在接收前没有能力保存任何值的通道,这种类型通道要求发送gorouutine和接收goroutine同时准备好,才能完成发送和接收操作。如果两个goroutine没有同时准备好, 通道会导致先执行发送或者接收的goroutine阻塞等待,这种对通道进行发送和接收的交互行为本身就是同步
阅读全文
posted @ 2019-07-23 22:15 孙龙-程序员
阅读(238)
评论(0)
推荐(0)
编辑
上一页
1
···
28
29
30
31
32
33
34
35
36
···
73
下一页