上一页 1 2 3 4 5 6 ··· 88 下一页
摘要: http://www.imooc.com/article/80653 https://www.jianshu.com/p/f3c2c32d981f 阅读全文
posted @ 2020-06-21 10:47 那些年的代码 阅读(578) 评论(0) 推荐(0) 编辑
摘要: 由于项目中需要使用批量插入功能, 所以在网上查找到了Redis 批量插入可以使用pipeline来高效的插入, 示例代码如下: String key = "key"; Jedis jedis = new Jedis("xx.xx.xx.xx"); Pipeline p = jedis.pipelin 阅读全文
posted @ 2020-06-11 17:40 那些年的代码 阅读(1397) 评论(0) 推荐(0) 编辑
摘要: 当你用vi打开一个文件后,因为文件太长,如何才能找到你所要查找的关键字呢? 在vi里可没有菜单-〉查找 不过没关系,你在命令模式下敲斜杆( / )这时在状态栏(也就是屏幕左下脚)就出现了 “/” 然后输入你要查找的关键字敲回车就可以了。 如果你要继续查找此关键字,敲字符 n 就可以继续查找了。 敲字 阅读全文
posted @ 2020-06-04 18:25 那些年的代码 阅读(5089) 评论(0) 推荐(2) 编辑
摘要: 当我们创建一个可扩展大小的线程池,并且需要在线程池内同时让有限数目的线程并发运行时,就需要用到Semaphore(信号灯机制),Semaphore 通常用于限制可以访问某些资源(物理或逻辑的)的线程数目,它是一个计数信号量,从概念上讲,信号量维护了一个许可集合,如有必要,在许可可用前会阻塞每一个ac 阅读全文
posted @ 2020-06-04 15:32 那些年的代码 阅读(273) 评论(0) 推荐(0) 编辑
摘要: SpringRedisTemplate针对这个Scan进行了封装,示例使用(针对最新库spring-data-redis-1.8.1.RELEASE): Set<Object> execute = redisTemplate.execute(new RedisCallback<Set<Object> 阅读全文
posted @ 2020-06-03 14:07 那些年的代码 阅读(1930) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zhangguanghui002/article/details/78770071 阅读全文
posted @ 2020-06-03 11:32 那些年的代码 阅读(304) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/linzhiqiang0316/article/details/52711908 阅读全文
posted @ 2020-06-02 20:04 那些年的代码 阅读(557) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/howard789/article/details/86611467 阅读全文
posted @ 2020-06-02 17:01 那些年的代码 阅读(1099) 评论(0) 推荐(0) 编辑
摘要: sudo npm install node-sass --unsafe-perm --save-dev npm install npm run dev 或者后台运行 nohup npm run dev >/dev/null 2>&1 & 终止杀掉所有node进程 :ps -ef | grep nod 阅读全文
posted @ 2020-05-28 10:18 那些年的代码 阅读(2260) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_36132599/article/details/89148708 https://blog.csdn.net/dmcpxy/article/details/81163735 阅读全文
posted @ 2020-05-27 14:33 那些年的代码 阅读(4861) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 88 下一页