04 2019 档案

摘要:package mainimport ( "fmt" "sort")/*slice 简单排序示例*/func main() { //定义一个年龄列表 ageList := []int{1, 3, 7, 7, 8, 2, 5} /... 阅读全文
posted @ 2019-04-16 13:44 byfei 阅读(42) 评论(0) 推荐(0) 编辑
摘要:windows下MongoDB以及MongoVUE的安装和使用https://blog.csdn.net/m1766521525/article/details/79902793启动cmd默认路径C:\Program Files\MongoDB\Server\... 阅读全文
posted @ 2019-04-16 09:09 byfei 阅读(61) 评论(0) 推荐(0) 编辑
摘要:一、概述官方的math 包中提供了取整的方法,向上取整math.Ceil() ,向下取整math.Floor() 二、用法package mainimport ( "fmt" "math")func main(){ x := 1.1 f... 阅读全文
posted @ 2019-04-08 18:52 byfei 阅读(444) 评论(0) 推荐(0) 编辑
摘要:https://my.oschina.net/RabbitXiao/blog/1787789 自定义配置文件添加在文件最后 supervisord.conf[include]files = /etc/supervisor/conf.d/*.conf ... 阅读全文
posted @ 2019-04-03 18:05 byfei 阅读(56) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/msnsj/p/4242578.html 阅读全文
posted @ 2019-04-03 16:31 byfei 阅读(29) 评论(0) 推荐(0) 编辑
摘要:安装wget http://download.redis.io/releases/redis-3.0.7.tar.gztar xzf redis-3.0.7.tar.gzcd redis-3.0.7make整理mkdir /usr/rediscd srccp ... 阅读全文
posted @ 2019-04-03 10:13 byfei 阅读(41) 评论(0) 推荐(0) 编辑