directory
1.0.1
Repository: https://github.com/bitxx/pholcus.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
Package config is used to parse config Usage: import( "github.com/astaxie/beego/config" ) cnf, err := config.NewConfig("ini", "config.conf") cnf APIS: cnf.Set(key, val string) error cnf.String(key string) string cnf.Strings(key string) []string cnf.Int(key string) (int, error) cnf.Int64(key string) (int64, error) cnf.Bool(key string) (bool, error) cnf.Float(key string) (float64, error) cnf.DefaultString(key string, defaultVal string) string cnf.DefaultStrings(key string, defaultVal []string) []string cnf.DefaultInt(key string, defaultVal int) int cnf.DefaultInt64(key string, defaultVal int64) int64 cnf.DefaultBool(key string, defaultVal bool) bool cnf.DefaultFloat(key string, defaultVal float64) float64 cnf.DIY(key string) (interface{}, error) cnf.GetSection(section string) (map[string]string, error) cnf.SaveConfigFile(filename string) error more docs http://beego.me/docs/module/config.md.
No description provided by the author
Package goquery implements features similar to jQuery, including the chainable syntax, to manipulate and query an HTML document.
Common and useful utils for the Go project development.
No description provided by the author
This package is a character-set conversion library for Go.
No description provided by the author
No description provided by the author
taken from http://golang.org/src/pkg/net/ipraw_test.go notes: in MAC system, use root user to run.
No description provided by the author
通用资源池,动态增加资源实例,并支持空闲资源定时回收功能。.
No description provided by the author
Package session provider Usage: import( "github.com/astaxie/beego/session" ) func init() { globalSessions, _ = session.NewManager("memory", `{"cookieName":"gosessionid", "enableSetCookie,omitempty": true, "gclifetime":3600, "maxLifetime": 3600, "secure": false, "cookieLifeTime": 3600, "providerConfig": ""}`) go globalSessions.GC() } more docs: http://beego.me/docs/module/session.md.
No description provided by the author
Teleport是一款适用于分布式系统的高并发API框架,它采用socket全双工通信,实现S/C对等工作,支持长、短两种连接模式,支持断开后自动连接与手动断开连接,内部数据传输格式为JSON。.
No description provided by the author
Package websocket implements a client and server for the WebSocket protocol as specified in RFC 6455.
No description provided by the author