localStorage是一个没有时间限制的数据存储,如果没有手动删除它,它将永久保存。但是有些时候我们又需要它在一段时间后自动删除,这里我们可以对它进行扩展。
Webbench的使用
Posted on
In
Tool
Webbench是一个在linux下使用的非常简单的网站压测工具。它使用fork()模拟多个客户端同时访问我们设定的URL,测试网站在压力下工作的性能,最多可以模拟3万个并发连接去测试网站的负载能力。
下载好tar.gz文件,上传到linux。
对于异步的理解
Posted on
In
Technology
对于异步的理解
之前对于同步方法和使用async、await的异步方法很迷惑。我觉得等待执行结果的异步和同步方法有什么区别吗?他们的执行顺序都是一样的啊?不是都需要等待执行结果吗?
Redis工具类
Posted on
In
Technology
redis工具类
利用反射把查询到的Table、Reader转换成List、Model
Posted on
In
Technology
纯粹写着玩,在不使用ORM工具的情况下通过反正转换类型。
上传本地项目到GitHub
Posted on
In
Tool
- 生成ssh秘钥
1
ssh-keygen -t rsa -C "xxxx@xx.com"
linux常用命令
Posted on
In
System
Linux中常用的一些命令,记录下来方便日后查询(持续更新中…)
关于IoC和DI
Posted on
In
Technology
设计模式六大原则
Posted on
In
Technology
设计模式六大原则
Python学习笔记-Python数据类型
Posted on
In
Technology