上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 39 下一页
摘要: select * from test where ID like '%Test_001%'; ==> select * from test where IDlike '%Test_001%' escape ''; 阅读全文
posted @ 2022-06-30 18:12 Hey,Coder! 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 安装对应的nuget - 目前只有previce版本 Microsoft.AspNetCore.Grpc.HttpApi Microsoft.AspNetCore.Grpc.Swagge program.cs中调整监听端口同时支持http1和http2 public static IHostBuil 阅读全文
posted @ 2022-06-24 14:46 Hey,Coder! 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 客户端基 /// <summary> /// /// </summary> public class BaseClient : IDisposable { protected string client; protected int port; protected string username; 阅读全文
posted @ 2022-06-23 11:27 Hey,Coder! 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 下文以{mqttPath}代表安装目录 ### 开启授权 1. {mqttPath}/etc/emqx.conf关闭匿名访问 allow_anonymous = false ![](https://img2022.cnblogs.com/blog/944369/202206/944369-20220 阅读全文
posted @ 2022-06-23 11:25 Hey,Coder! 阅读(300) 评论(0) 推荐(0) 编辑
摘要: ProcessStartInfo.UseShellExecute 属性需要设置为true Process proc = new Process(); proc.StartInfo.UseShellExecute = true; proc.StartInfo.CreateNoWindow = true 阅读全文
posted @ 2022-06-15 14:29 Hey,Coder! 阅读(726) 评论(0) 推荐(0) 编辑
摘要: 使用tag区分 #配置多个input并指定tag filebeat.inputs: # Each - is an input. Most options can be set at the input level, so # you can use different inputs for vari 阅读全文
posted @ 2022-05-27 11:51 Hey,Coder! 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 使用以下两个工具进行分析 dotnet-dounters dotnet-dump 安装 dotnet tool install --global dotnet-counters dotnet tool install --global dotnet-dump 查看进程信息并找到进程编号 dotnet 阅读全文
posted @ 2022-05-26 11:58 Hey,Coder! 阅读(361) 评论(0) 推荐(0) 编辑
摘要: 安装nuget ``` Install-Package Microsoft.Extensions.Hosting.WindowsServices Install-Package Microsoft.Extensions.Hosting.Systemd ``` ### .net5 调整CreateHo 阅读全文
posted @ 2022-05-24 10:52 Hey,Coder! 阅读(327) 评论(0) 推荐(0) 编辑
摘要: rem 通过/fo csv可以显示完整的映像名称 @echo off setlocal enabledelayedexpansion set serviceExe=test.exe for /l %%i in (1,1,5) do ( set isStart=false tasklist /fo c 阅读全文
posted @ 2022-05-20 14:24 Hey,Coder! 阅读(332) 评论(0) 推荐(0) 编辑
摘要: 特性 quartz hangfire 时间精度 可实现秒级精度 可实现分钟级精度 看板 有第三方工具 默认支持 cron 标准cron 支持5-6位cron 测试代码 hangfire ConfigureServices中添加 services.AddHangfire(t => t.UseMemor 阅读全文
posted @ 2022-05-11 13:28 Hey,Coder! 阅读(1828) 评论(0) 推荐(1) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 39 下一页