随笔分类 -  DailyProgress

Every day is making progress.
摘要:下载 tar包wget http://mysql-udf-http.googlecode.com/files/mysql-udf-http-1.0.tar.gz解压tar -vzxf mysql-udf-http-1.0.tar.gzcd mysql-udf-http-1.0编译./configur 阅读全文
posted @ 2019-05-31 17:08 Weibull 阅读(2529) 评论(0) 推荐(0)
摘要:安装thrift rpc 安装的系统是Centos 7 未成功的方法 :(原因没找到,但是还是要记录下) 安装依赖库 yum install automake libtool flex bison pkgconfig gcc-c++ boost-devel libevent-devel zlib-d 阅读全文
posted @ 2019-05-31 16:58 Weibull 阅读(605) 评论(0) 推荐(0)
摘要:linux 关于TCP/IP 的优化配置 配置文件/etc/sysctl.conf 修改完文件生效的命令 /sbin/sysctl -p 如下是总结的配置内容及说明 net.ipv4.conf.all.rp_filter=0 net.ipv4.conf.default.rp_filter=0 net 阅读全文
posted @ 2019-05-31 16:26 Weibull 阅读(857) 评论(0) 推荐(0)
摘要:# 操作系统模块 # import os# 待续# 解释器模块 # import sys# 待续# 加密 # import hashlib## m = hashlib.md5()# m.update("HelloWorld".encode("utf8"))# print(m.hexdigest()) 阅读全文
posted @ 2018-10-24 17:00 Weibull
摘要:# 封装 # class Bar:# def __init__(self,name,age,content):# self.name = name# self.age = age# self.content = content# def foo(self):# print(self.name,sel 阅读全文
posted @ 2018-10-24 16:57 Weibull