说明:最近一直在做关系抽取的任务,此次仅仅是记录一个实用的简单示例 参考https://www.cnblogs.com/jclian91/p/12301056.html 参考https://blog.csdn.net/asialee_bird/article/details/102747435 im ...
分类:
其他好文 时间:
2020-05-27 10:39:31
阅读次数:
102
1 class SocketPlugin { 2 constructor (param) { 3 this.websocket = null 4 this.isConnect = false 5 this.timeoutNum = null 6 this.isActivelyClose = fals ...
分类:
Web程序 时间:
2020-05-27 10:37:06
阅读次数:
67
1,开启大箱子补丁。 2,你在游戏根目录下搜索PlugY.ini文件。 [SKILLS POINTS]ActiveSkillsUnassignment=0ActiveSkillsUnassignmentOneForOne=0 0改成1,改完后进入游戏,点击技能界面右上方的×,就可以洗点洗技能了。 3 ...
分类:
其他好文 时间:
2020-05-27 01:25:58
阅读次数:
637
参考文档:https://www.cnblogs.com/yuhaohao/p/9770701.html命令:fio--filename=/mnt/test_rw--bs=16K--rw=randwrite--size=20G--runtime=300--time_based--ioengine=libaio--iodepth=16--numjobs=2--group_reporting--nam
分类:
系统相关 时间:
2020-05-26 23:29:02
阅读次数:
93
函数模板的实例 #include <iostream> using namespace std; template<typename T> void myswap(T &a, T &b) { T t; t = a; a = b; b = t; } int main() { int x = 1; in ...
分类:
其他好文 时间:
2020-05-26 22:04:23
阅读次数:
59
redis集群有三种模式,主从,sentinel(哨兵),cluster。关于这三种模式的介绍和部署,其它文章也有相关介绍,本人参考了他人的博客完成了三种模式的部署,博客地址在评论区。目前redis使用主从模式,集群信息如下:[root@masterredis]#redis-cli-h192.168.122.7-a123456inforeplicationWarning:Usingapasswor
分类:
其他好文 时间:
2020-05-26 20:20:54
阅读次数:
141
CancelToken常用在封装的请求中,用来取消上一一面axios请求 在路由跳转时,若当前页面的数据量过大,而我们立即点击跳转下一页面,那么可能会出现,当前页面接口还在pending状态,页面已经跳到新页面,旧的请求依旧没有停止。 这将会十分损耗性能,这时我们应该先取消掉之前还没有获得相应的请求 ...
分类:
其他好文 时间:
2020-05-26 18:42:29
阅读次数:
282
一 数据的增删改查 1.1查看 def userlist(request): # 查询出用户表里面所有的数据 # 方式1 # data = models.User.objects.filter() # print(data) # 方式2 user_queryset = models.User.obj ...
分类:
其他好文 时间:
2020-05-26 18:37:07
阅读次数:
65
One of the main sources of efficiency in quicksort is locality of reference, where the computer hardware is optimized so that accessing memory locatio ...
分类:
编程语言 时间:
2020-05-26 18:36:35
阅读次数:
101
大江东去,浪淘尽,千古风流人物。故垒西边,人道是,三国周郎赤壁。乱石穿空,惊涛拍岸,卷起千堆雪。江山如画,一时多少豪杰。遥想公瑾当年,小乔初嫁了,雄姿英发。羽扇纶巾,谈笑间,樯橹灰飞烟灭。故国神游,多情应笑我,早生华发。人生如梦,一尊还酹江月 <form action="" method="post ...
分类:
移动开发 时间:
2020-05-26 15:09:42
阅读次数:
123