directory
1.3.0
Repository: https://github.com/golangltd/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.
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
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