上一页 1 2 3 4 5 6 7 8 ··· 15 下一页
摘要: 前面写了一个版本的“金明序号”生成器。但是不太完美。如果我加上监控,它就会报错。在反复的试验之后。其实我应该在silo运行起来之后。再运行客户端初始化。 public class CallGrainStartupTask : IStartupTask { private readonly ILogg 阅读全文
posted @ 2021-03-30 14:19 forhells 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 因为写一个序号服务,不需要加入集群,也没有数据库,本地布置,指定了Ip。运行不起来了。 仔细阅读了文档,只能UseLocalhostClustering 这种模式。 但是cof-clients的方式还没有搞明白。 如果是集群模式的。最好是指定IP,昨天在测试中发现,两台机器,多个网站。一个是127. 阅读全文
posted @ 2021-03-02 13:49 forhells 阅读(259) 评论(0) 推荐(0) 编辑
摘要: 其实 Serilog.Sinks.File 没有问题。 我有一个服务一直在增加日志,但是我在配置中写了限制的,但是它还是一直在增加,这是为什么了。找了好久的原因。最后发现。还是自己的错误。 我的配置如下: "Serilog": { "Using": [ "Serilog.Sinks.File" ], 阅读全文
posted @ 2021-02-25 09:31 forhells 阅读(894) 评论(3) 推荐(0) 编辑
摘要: 缘起,因为系统要访问第三方服务。第三方服务时不时会超时,所以模拟了两个webapi,A和B, A访问B,B随机200ms-6S返回消息。 刚开始使用了RestSharp, 使用jmeter 500个实例/s,持续60次。 结果是2-300左右qps,觉得很好。最后发现,是因为大量的time_wait 阅读全文
posted @ 2021-02-20 13:06 forhells 阅读(181) 评论(0) 推荐(0) 编辑
摘要: dailog为啥关闭不了? 因为调了两次创建dailog了。 数据为啥加载不出来? 因为用的是 SugarRecord所以字段名要大写。_也要干掉。 阅读全文
posted @ 2021-02-18 09:31 forhells 阅读(43) 评论(0) 推荐(0) 编辑
摘要: # Apache Hause .conf file for TLS/1.3 supported versions## This is the main Apache HTTP server configuration file. It contains the# configuration dire 阅读全文
posted @ 2021-01-30 13:53 forhells 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 在sql反模式中,提到了闭包表,它只有两个字段。 public class Tree { /// <summary> /// 祖先 /// </summary> public int Ancestor { get; set; } /// <summary> /// 子孙 /// </summary> 阅读全文
posted @ 2021-01-29 15:44 forhells 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 看了这个文章 https://www.cnblogs.com/kewei/p/14339919.html 终于知道了事件的这种方式怎么来搞同步调用。看别人的文章。我copy一把。记录下。 因为拍黄片的不会调SignalR,我只好转成同步的。 [HttpGet] public async Task<I 阅读全文
posted @ 2021-01-28 18:17 forhells 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 使用topself,因为我太蠢了,所以经常会1064或者是1053,最近花了1-2天才搞清楚在使用topself的时候应该怎么写。 Microsoft.Extensions.Hosting.IHost, HostFactory.Run(x => { x.Service<IHost>(s => { s 阅读全文
posted @ 2021-01-27 16:48 forhells 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 我也是copy别人的。 注册的主要方法体里面,我这是后台默默的处理日志。 var filechannel = Channel.CreateBounded<string>(6); 使用了有边界的,因为考虑到一次处理不完那么多。都放内存。内存会造反。 写一个生产者 public class Produc 阅读全文
posted @ 2021-01-27 16:43 forhells 阅读(179) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 15 下一页