pakage comments update

This commit is contained in:
John 2019-01-16 09:00:23 +08:00
parent 0c41909454
commit 80c1a02377
9 changed files with 9 additions and 9 deletions

View File

@ -4,7 +4,7 @@
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
// Package gmvc provides base object classes for MVC.
// Package gmvc provides basic object classes for MVC.
// MVC.
package gmvc

View File

@ -4,7 +4,7 @@
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
// Package gcfg provides configuration management.
// Package gcfg provides management for configuration files reading and caching.
// 配置管理.
// 配置文件格式支持json, xml, toml, yaml/yml
package gcfg

View File

@ -4,7 +4,7 @@
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
// Package gfcache provides for file reading and caching.
// Package gfcache provides reading and caching for file contents.
// 文件缓存.
package gfcache

View File

@ -4,7 +4,7 @@
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
// Package gfpool provides io-reuse pool for file pointer.
// Package gfpool provides io-reused pool for file pointer.
// 文件指针池.
package gfpool

View File

@ -5,7 +5,7 @@
// You can obtain one at https://gitee.com/johng/gf.
// @author john, zseeker
// Package glog implements powerful and easy-to-use levelled logging.
// Package glog implements powerful and easy-to-use levelled logging functionality.
// 日志模块.
// 直接文件/输出操作,没有异步逻辑,没有使用缓存或者通道
package glog

View File

@ -4,7 +4,7 @@
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
// Package gproc implements processes communication and management.
// Package gproc implements communication and management of processes.
// 进程管理/通信.
// 本进程管理从syscall, os.StartProcess, exec.Cmd都使用过
// 最后采用了exec.Cmd来实现多进程管理这是一个顶层的跨平台封装兼容性更好另外两个是偏底层的接口。

View File

@ -4,7 +4,7 @@
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
// Package grpool implements goroutine pool.
// Package grpool implements a goroutine reused pool.
// Goroutine池.
// 用于goroutine复用提升异步操作执行效率(避免goroutine限制并节约内存开销).
// 需要注意的是grpool提供给的公共池不提供关闭方法自创建的池可以手动关闭掉。

View File

@ -4,7 +4,7 @@
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
// Package grand provides high performance API for random feature.
// Package grand provides high performance API for random functionality.
// 随机数管理.
package grand

View File

@ -4,7 +4,7 @@
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
// Package gregex provides high performance API for regular expression feature.
// Package gregex provides high performance API for regular expression functionality.
// 正则表达式.
package gregex