英文: How to get process details from its PID 问题 我已经维护了一个当前正在运行在我的系统上的进程的PID列表(Linux)。现在,如果我能从这个PID获取进...
如何在Go中创建跨平台的文件路径?
英文: How do I create crossplatform file paths in Go? 问题 我想在golang中打开一个给定的文件"directory/subdirecto...
如何在Go中实现进程间通信?
英文: How to implement inter-process communication in Go? 问题 我正在使用Go编写一个负载均衡服务器系统。 负载均衡服务器将与多个应用服务器通信并...
手动编译doozerd失败。
英文: manual compiling doozerd fails 问题 我在以下位置安装了doozerd的源代码: home/stephan/src/go/src/pkg/github.com/h...
Google Go和SQLite:使用哪个库以及如何使用?
英文: Google Go and SQLite: What library to use and how? 问题 我对Google的Go语言还比较新,但我正在尝试通过编写一个简单的应用程序来与SQL...
我可以检查main.main包的名称吗?
英文: Can I introspect the name of the main.main package? 问题 这是一个相对独特的问题,但我目前正在尝试使用golang编写一个基于约定的设置存储...
使用部分字符串作为过滤器在Go GAE数据存储中搜索条目。
英文: Search entries in Go GAE datastore using partial string as a filter 问题 我在数据存储中有一组条目,我想在用户输入查询时进行...
为什么我要使用make()或new()?
英文: Why would I make() or new()? 问题 为什么要使用new()和make()这对分配器? 英文: The introduction documents dedicate...
go websockets eof
英文: go websockets eof 问题 我正在尝试制作一个简单的命令转发器,将我的家用电脑连接到我拥有的服务器,这样我就可以将命令推送到我的服务器,然后我的家用电脑就可以接收到。这些命令是用...
更简洁的编写单例结构体的方法
英文: Shorter way of writing singleton-structs 问题 如果我想创建一个“单例”结构体,我可以这样做: foo := struct{ bar func(stri...
11727