摘要: 其实从关注博客园到申请博客也有一段时间了,一直在关注博客大神们分享的技术,及随笔,真心的觉得你们都是我学习的榜样,无论是从技术还是人生阅历等各个方面,虽说自己也入职场2年多了,但一直还是个菜鸟,下面简单的说说我自己从初入职场到现在的一段堪称“崎岖”的人生旅程。 人生中的第一份工作 10年踏入大学的校 阅读全文
posted @ 2016-12-25 22:22 云霄宇霁 阅读(157) 评论(0) 推荐(0) 编辑
摘要: Filter在ASP.NET Core中允许code在指定的请求阶段前或者后执行。 Filter在ASP.NET Core方法请求管道中运行,有时被称作filter pipeline,filter pipeline在ASP.NET Core选择Action执行。 Filter 分类 每个filter 阅读全文
posted @ 2023-11-02 13:59 云霄宇霁 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 什么是Azure服务总线? Azure服务总线是完全托管的企业消息代理,包括消息队列和发布订阅(命名空间). Service Bus通常被用来解耦应用程序和服务,控制跨服务和应用程序间安全路由和传输数据。 本篇从实战出发介绍如何通过Service Bus发送接收及消费消息。 项目介绍:创建了5个工程 阅读全文
posted @ 2023-10-27 13:42 云霄宇霁 阅读(21) 评论(0) 推荐(0) 编辑
摘要: Ocelot supports some very rudimentary caching at the moment provider by the CacheManager project. This s an amazing project that is solving a lot of c 阅读全文
posted @ 2023-10-09 15:49 云霄宇霁 阅读(21) 评论(0) 推荐(0) 编辑
摘要: Ocelot supports claims based authorization which is run post authentication. This means if ou have a route you want to authorize you can add the follo 阅读全文
posted @ 2023-10-09 10:50 云霄宇霁 阅读(10) 评论(0) 推荐(0) 编辑
摘要: Qos quality of service Ocelot supports one Qos capability at the current time.You can set on a per Route basis if you want to use a circuit breaker wh 阅读全文
posted @ 2023-10-08 18:57 云霄宇霁 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Ocelot can load balance across available downstream services for each Route. This means you can scale your downstream services and Ocelot can use them 阅读全文
posted @ 2023-10-08 18:25 云霄宇霁 阅读(38) 评论(0) 推荐(0) 编辑
摘要: In order to authenticate Routes and subsequently use any of Ocelot's claims based features such as authorization or modifying the request with values 阅读全文
posted @ 2023-10-08 17:18 云霄宇霁 阅读(41) 评论(0) 推荐(0) 编辑
摘要: Ocelot supports rate limiting of upstream requests so that your downstream services do not become overloaded. OK so to get rate limiting working for a 阅读全文
posted @ 2023-10-08 14:51 云霄宇霁 阅读(22) 评论(0) 推荐(0) 编辑
摘要: Service discovery helps you discovery,track and monitor the health of services within a network. Service discovery registers and maintains a record of 阅读全文
posted @ 2023-09-19 20:12 云霄宇霁 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 上一篇主要详细介绍log4net相关的一些配置项,本章意在从实战角度详解log4net在NetCore中使用。 1、创建Netcore consol application 通过Nuget package安装log4net(Microsoft.Extensions.Logging.Log4Net.A 阅读全文
posted @ 2023-09-13 13:53 云霄宇霁 阅读(113) 评论(0) 推荐(0) 编辑