posted @ 2018-03-26 14:57 Bill Yuan 阅读(5821) 评论(0) 推荐(1) 编辑
摘要:
作者:Jerry Jho链接:https://www.zhihu.com/question/23003213/answer/56121859来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 C/C++ 调用 Python (基础篇)— 仅讨论Python官方提供的实现方 阅读全文
摘要:
转自:http://blog.csdn.net/runningman2012/article/details/54692010 系统Win10 64位,vs2015 1. git 下载depot_tools,git clone https://chromium.googlesource.com/ch 阅读全文
posted @ 2018-03-22 20:52 Bill Yuan 阅读(297) 评论(0) 推荐(0) 编辑
摘要:
转自:https://www.cnblogs.com/Pynix/p/4154630.html 【模板标签】 模板标签用"{{"和"}}"括起来 【注释】 {{/* a comment */}} 使用“{{/*”和“*/}}”来包含注释内容 【变量】 {{.}} 此标签输出当前对象的值 {{.Adm 阅读全文
posted @ 2018-03-21 14:22 Bill Yuan 阅读(6166) 评论(0) 推荐(0) 编辑
摘要:
cmake -G "Visual Studio 14 2015 Win64" 阅读全文
posted @ 2018-03-19 18:14 Bill Yuan 阅读(880) 评论(0) 推荐(0) 编辑
摘要:
转自:https://www.iyunv.com/thread-52670-1-1.html 一、redis简介Redis是一个key-value存储系统。和Memcached类似,为了保证效率,数据都是缓存在内存中。区别的是redis会周期性的把更新的数据写入磁盘或者把修改操作写入追加的记录文件, 阅读全文
posted @ 2018-03-12 12:44 Bill Yuan 阅读(28890) 评论(0) 推荐(0) 编辑
摘要:
转自:https://studygolang.com/articles/12510 文档 grpc中文文档 grpc-gateway,restful和grpc转换库 protobuf 官网 protobuf Google Protocol Buffer(简称 Protobuf)是一种轻便高效的结构化 阅读全文
posted @ 2018-03-09 18:32 Bill Yuan 阅读(8431) 评论(0) 推荐(0) 编辑
摘要:
转自:https://studygolang.com/articles/12483 什么是TCP粘包问题以及为什么会产生TCP粘包,本文不加讨论。本文使用golang的bufio.Scanner来实现自定义协议解包。 协议数据包定义 本文模拟一个日志服务器,该服务器接收客户端传到的数据包并显示出来 阅读全文
posted @ 2018-03-09 18:14 Bill Yuan 阅读(5093) 评论(0) 推荐(0) 编辑
摘要:
转自:http://www.cnblogs.com/cobbliu/p/5035358.html 需要注意的是,不能将Slice像这样转换: (*C.char)(unsafe.Pointer(&dir)),因为Slice在Go中实际上不是一个完全意义上的数组,它只是一种数据结构,带有若干头部,见ht 阅读全文
posted @ 2018-03-09 18:03 Bill Yuan 阅读(287) 评论(0) 推荐(0) 编辑