2020年10月15日
摘要: @echo off echo 正在清除系统垃圾文件,请稍等...... del /f /s /q %systemdrive%\*.tmp del /f /s /q %systemdrive%\*._mp del /f /s /q %systemdrive%\*.log del /f /s /q %s 阅读全文
posted @ 2020-10-15 16:19 絆τ 阅读(95) 评论(0) 推荐(0) 编辑
2020年8月21日
摘要: 交换器声明(ExchangeDeclare)参数描述exchange:交换器名称type:类型durable:持久化autoDelete:自动删除arguments:结构化参数(alternate-exchange) durable:设置持久化后,将会存到硬盘中。服务器重启也不删除autoDelet 阅读全文
posted @ 2020-08-21 09:12 絆τ 阅读(231) 评论(0) 推荐(0) 编辑
2020年8月19日
摘要: 安装参考 https://www.cnblogs.com/vaiyanzi/p/9531607.html erlang 64位 点击下载 RabbitMQ3.8.6 点击下载 微软常用库合集 点击下载 阅读全文
posted @ 2020-08-19 08:57 絆τ 阅读(175) 评论(1) 推荐(0) 编辑
2020年8月18日
摘要: fanout 它会把所有发送到该交换器的消息路由到所有与该交换器绑定的队列中。 direct 它会把消息路由到那些绑定键和路由键完全匹配的队列中。 topic direct是完全匹配,topic是将消息路由到绑定键和路由键相匹配的队列中。 匹配规则: 1)RoutingKey 为一个“.”分隔字符串 阅读全文
posted @ 2020-08-18 17:14 絆τ 阅读(121) 评论(0) 推荐(0) 编辑
摘要: RabbitMQ 实现了AMQP协议(高级消息队列协议),遵循Mozilla Public License开源协议。 使用场景:数据投递、非阻塞操作、推送通知、发布/订阅模式、异步处理、工作队列 实现系统自动化、可访问性和伸缩性 开源的消息代理和队列服务器,用来通过普通协议在完全不同的应用之间共享数 阅读全文
posted @ 2020-08-18 14:53 絆τ 阅读(173) 评论(2) 推荐(0) 编辑
摘要: git rm -r --cached . git add . git commit -m 'update .gitignore' 阅读全文
posted @ 2020-08-18 09:40 絆τ 阅读(125) 评论(0) 推荐(0) 编辑
2020年7月7日
摘要: cat * > new.mp4 More Details:https://www.tecmint.com/13-basic-cat-command-examples-in-linux/ ffmpeg.exe -allowed_extensions ALL -i xx.m3u8 -c copy -bs 阅读全文
posted @ 2020-07-07 08:28 絆τ 阅读(370) 评论(0) 推荐(0) 编辑
2020年5月8日
摘要: SELECT (case when a.colorder=1 then d.name else '' end) N'表名', a.colorder N'字段序号', a.name N'字段名', (case when COLUMNPROPERTY( a.id,a.name,'IsIdentity') 阅读全文
posted @ 2020-05-08 21:16 絆τ 阅读(586) 评论(0) 推荐(0) 编辑
2020年1月14日
摘要: public static class TxtHelper { /// <summary> /// 在txt文件中加一条数据 /// </summary> /// <param name="folderName">文件夹名称</param> /// <param name="fileName">文件 阅读全文
posted @ 2020-01-14 14:58 絆τ 阅读(355) 评论(0) 推荐(0) 编辑
2020年1月8日
摘要: style cursor 请把鼠标移动到单词上,可以看到鼠标指针发生变化: Auto Crosshair Default Pointer Move e-resize ne-resize nw-resize n-resize se-resize sw-resize s-resize w-resize 阅读全文
posted @ 2020-01-08 16:45 絆τ 阅读(181) 评论(0) 推荐(0) 编辑