NewLife.Stardust 2.9.2023.1031-beta0820

This is a prerelease version of NewLife.Stardust.
There is a newer version of this package available.
See the version list below for details.
dotnet add package NewLife.Stardust --version 2.9.2023.1031-beta0820
                    
NuGet\Install-Package NewLife.Stardust -Version 2.9.2023.1031-beta0820
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NewLife.Stardust" Version="2.9.2023.1031-beta0820" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NewLife.Stardust" Version="2.9.2023.1031-beta0820" />
                    
Directory.Packages.props
<PackageReference Include="NewLife.Stardust" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add NewLife.Stardust --version 2.9.2023.1031-beta0820
                    
#r "nuget: NewLife.Stardust, 2.9.2023.1031-beta0820"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package NewLife.Stardust@2.9.2023.1031-beta0820
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=NewLife.Stardust&version=2.9.2023.1031-beta0820&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=NewLife.Stardust&version=2.9.2023.1031-beta0820&prerelease
                    
Install as a Cake Tool

NewLife.Stardust - 星尘分布式平台

GitHub top language GitHub License Nuget Downloads Nuget Nuget (with prereleases)

Nuget Downloads Nuget Nuget (with prereleases)

星尘

应用服务犹如宇宙中的尘埃,而作为应用服务承载体的计算机节点是为星星,星星与尘埃构成整个浩瀚星空,即为星尘!
XCode

Stardust 星尘,轻量级分布式服务框架!
集群管理、配置中心、性能监控、远程发布、服务治理。服务自动注册和发现,负载均衡,动态伸缩,故障转移。
演示系统:http://star.newlifex.com

核心功能

  1. 星尘代理。StarAgent部署在每台应用服务器,作为系统服务负责守护本地应用及监控节点性能,支持Windows/Linux/IoT
  2. 节点管理。中心化管理多机器上的海量StarAgent,支持机房内服务器节点、远端桌面工控机以及物联网边缘计算节点
  3. 应用管理。为每个应用系统分配接入密钥,用于配置中心、应用监控、服务注册、服务发现等
  4. 配置中心。各应用从配置中心读取自己的配置信息,有利于应用的多实例部署以及集中管理
  5. 监控中心。各应用(服务提供者和服务消费者)向中心上报性能指标等监控数据
  6. 注册中心。各微服务应用(服务提供者)向注册中心上报自身服务信息
  7. 服务发现。各业务应用(服务消费者)从注册中心拉取指定服务的提供者信息,分布式调用(不经网关)
  8. 远程发布。在星尘控制台上发布应用包到多台安装有星尘代理的应用服务器或物联网边缘节点,StarAgent负责拉起并守护进程
  9. 日志中心。各应用(服务提供者和服务消费者)向中心上报日志数据,统一在星尘Web查看

监控中心

星尘监控介绍 https://newlifex.com/blood/stardust_monitor
应用监控 XCode
物联网平台远程控制花园水泵的调用链 传送门 XCode
关系图 XCode

设计概要

提供者P向星尘S注册自己拥有的10个服务接口,消费者C也登入星尘S,得到访问令牌T,查找到某个接口刚好是P提供,于是得到了P的服务地址,然后C直连P,并使用访问令牌T表明身份

提供者->星尘: Key登录
note over 星尘: key/secret
提供者-->>星尘: 注册服务

消费者->星尘: Key登录
星尘-->消费者: 访问令牌Token
note left of 消费者: 向提供者验明身份

消费者->星尘: 查询服务
星尘-->消费者: 服务所在提供者列表

消费者->提供者: Token令牌登录
提供者-->消费者: 登录成功

提供者-->>星尘: 汇报状态

消费者->提供者: 请求服务
提供者-->消费者: 响应数据

ServiceMesh架构

Sidecar设计模式正在收到越来越多的关注和采用。作为Service Mesh的重要要素,Sidecar模式对于构建高度高度可伸缩、有弹性、安全且可便于监控的微服务架构系统至关重要。它降低了与微服务架构相关的复杂性,并提供了负载平衡、服务发现、流量管理、电路中断、遥测、故障注入等功能特性。

消费者->本机代理: 初始化
本机代理->星尘: Key登录
星尘-->本机代理: 访问令牌Token

本机代理->星尘: 查询服务
星尘-->本机代理: 服务所在提供者列表

本机代理->提供者: Token令牌登录
提供者-->本机代理: 登录成功

本机代理-->>星尘: 汇报状态

消费者->本机代理: 请求服务
本机代理->提供者: 请求服务
提供者-->本机代理: 响应数据
本机代理-->消费者: 响应数据

新生命项目矩阵

各项目默认支持net7.0/netstandard2.1/netstandard2.0/net4.61,旧版(2022.1225)支持net4.5/net4.0/net2.0

项目 年份 说明
基础组件 支撑其它中间件以及产品项目
NewLife.Core 2002 核心库,日志、配置、缓存、网络、序列化、APM性能追踪
NewLife.XCode 2005 大数据中间件,单表百亿级,MySql/SQLite/SqlServer/Oracle/TDengine/达梦,自动分表
NewLife.Net 2005 网络库,单机千万级吞吐率(2266万tps),单机百万级连接(400万Tcp)
NewLife.Remoting 2011 RPC通信框架,内网高吞吐或物联网硬件设备场景
NewLife.Cube 2010 魔方快速开发平台,集成了用户权限、SSO登录、OAuth服务端等,单表100亿级项目验证
NewLife.Agent 2008 服务管理组件,把应用安装成为操作系统守护进程,Windows服务、Linux的Systemd
NewLife.Zero 2020 Zero零代脚手架,基于NewLife组件生态的项目模板,Web、WebApi、Service
中间件 对接知名中间件平台
NewLife.Redis 2017 Redis客户端,微秒级延迟,百万级吞吐,丰富的消息队列,百亿级数据量项目验证
NewLife.RocketMQ 2018 RocketMQ纯托管客户端,支持Apache RocketMQ和阿里云消息队列,十亿级项目验
NewLife.MQTT 2019 物联网消息协议,MqttClient/MqttServer,客户端支持阿里云物联网
NewLife.IoT 2022 IoT标准库,定义物联网领域的各种通信协议标准规范
NewLife.Modbus 2022 ModbusTcp/ModbusRTU/ModbusASCII,基于IoT标准库实现,支持IoT平台和IoTEdge
NewLife.Siemens 2022 西门子PLC协议,基于IoT标准库实现,支持IoT平台和IoTEdge
NewLife.Map 2022 地图组件库,封装百度地图、高德地图和腾讯地图
NewLife.IP 2022 IP地址库,IP地址转物理地址
产品平台 产品平台级,编译部署即用,个性化自定义
AntJob 2019 蚂蚁调度,分布式大数据计算平台(实时/离线),蚂蚁搬家分片思想,万亿级数据量项目验证
Stardust 2018 星尘,分布式服务平台,节点管理、APM监控中心、配置中心、注册中心、发布中心
NewLife.ERP 2021 企业ERP,产品管理、客户管理、销售管理、供应商管理
CrazyCoder 2006 码神工具,众多开发者工具,网络、串口、加解密、正则表达式、Modbus
XProxy 2005 产品级反向代理,NAT代理、Http代理
HttpMeter 2022 Http压力测试工具
GitCandy 2015 Git源代码管理系统
SmartOS 2014 嵌入式操作系统,完全独立自主,支持ARM Cortex-M芯片架构
SmartA2 2019 嵌入式工业计算机,物联网边缘网关,高性能.NET6主机,应用于工业、农业、交通、医疗
菲凡物联FIoT 2020 物联网整体解决方案,建筑、环保、农业,软硬件及大数据分析一体化,单机十万级点位项目验证
NewLife.UWB 2020 厘米级(10~20cm)高精度室内定位,软硬件一体化,与其它系统联动,大型展厅项目验证

新生命开发团队

XCode

新生命团队(NewLife)成立于2002年,是新时代物联网行业解决方案提供者,致力于提供软硬件应用方案咨询、系统架构规划与开发服务。
团队主导的开源NewLife系列组件已被广泛应用于各行业,Nuget累计下载量高达60余万次。
团队开发的大数据核心组件NewLife.XCode、蚂蚁调度计算平台AntJob、星尘分布式平台Stardust、缓存队列组件NewLife.Redis以及物联网平台NewLife.IoT,均成功应用于电力、高校、互联网、电信、交通、物流、工控、医疗、文博等行业,为客户提供了大量先进、可靠、安全、高质量、易扩展的产品和系统集成服务。

我们将不断通过服务的持续改进,成为客户长期信赖的合作伙伴,通过不断的创新和发展,成为国内优秀的IT服务供应商。

新生命团队始于2002年,部分开源项目具有20年以上漫长历史,源码库保留有2010年以来所有修改记录
网站:https://newlifex.com
开源:https://github.com/newlifex
QQ群:1600800/1600838
微信公众号:
智能大石头

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net6.0-windows7.0 is compatible.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net7.0-windows7.0 is compatible.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

Showing the top 5 NuGet packages that depend on NewLife.Stardust:

Package Downloads
NewLife.Cube.Core

Web快速开发平台,搭建管理后台,灵活可扩展!内部集成了用户权限管理、模板继承、SSO登录、OAuth服务端、数据导出与分享等多个功能模块,在真实项目中经历过单表100亿数据添删改查的考验。

NewLife.Cube

Web快速开发平台,搭建管理后台,灵活可扩展!内部集成了用户权限管理、模板继承、SSO登录、OAuth服务端、数据导出与分享等多个功能模块,在真实项目中经历过单表100亿数据添删改查的考验。

NewLife.Stardust.Extensions

星尘,分布式服务框架扩展。节点管理,监控中心,配置中心,发布中心,注册中心

NewLife.AntJob

分布式任务调度系统,纯NET打造的重量级大数据实时计算平台,万亿级调度经验积累。

NewLife.Map

地图组件库,封装百度地图、高德地图和腾讯地图

GitHub repositories (6)

Showing the top 6 popular GitHub repositories that depend on NewLife.Stardust:

Repository Stars
NewLifeX/X
Core basic components: log (file / network), configuration (XML / JSON / HTTP), cache (memory / redis), network (TCP / UDP / HTTP), RPC framework, serialization (binary / XML / JSON), APM performance tracking. 核心基础组件,日志(文件/网络)、配置(XML/Json/Http)、缓存(内存/Redis)、网络(Tcp/Udp/Http)、RPC框架、序列化(Binary/XML/Json)、APM性能追踪。
NewLifeX/NewLife.Redis
High performance redis client, support NETCore/. NET4. 0/. NET4. 5. It is specially optimized for big data and message queue. The average daily consumption of online single application is 10 billion. 高性能Redis客户端,支持.NETCore/.NET4.0/.NET4.5,为大数据与消息队列而特别优化,线上单应用日均100亿调用量
NewLifeX/AntJob
高吞吐 .NET 分布式任务与实时数据调度平台:时间/数据/消息/Cron/SQL/脚本切片,自动重试与弹性扩缩,回溯补算 + Web 控制台。High‑throughput .NET distributed job & real‑time scheduler with fine‑grained slicing, retries, elastic scaling & web console.
NewLifeX/XCoder
新生命码神工具,代码生成、网络工具、API工具、串口工具、正则工具、图标工具、加解密工具、地图接口。
NewLifeX/NewLife.MQTT
最流行的物联网通信协议MQTT,包括客户端、服务端和Web管理平台
NewLifeX/XProxy
XProxy是一个代理服务器,内置有NAT、反向代理、直接代理、间接代理等。
Version Downloads Last Updated
3.4.2025.1001 0 10/1/2025
3.4.2025.1001-beta1814 0 10/1/2025
3.4.2025.921-beta1559 219 9/21/2025
3.4.2025.914-beta1427 219 9/14/2025
3.4.2025.910-beta1302 170 9/10/2025
3.4.2025.901 977 9/1/2025
3.4.2025.901-beta1734 174 9/1/2025
3.4.2025.831-beta0413 166 8/31/2025
3.4.2025.816-beta0513 692 8/16/2025
3.4.2025.808-beta1108 704 8/8/2025
3.4.2025.805-beta1534 249 8/5/2025
3.4.2025.801 1,007 8/1/2025
3.4.2025.801-beta0410 107 8/1/2025
3.4.2025.728-beta1610 186 7/28/2025
3.4.2025.724-beta0003 537 7/24/2025
3.4.2025.723-beta0606 583 7/23/2025
3.4.2025.719-beta0005 107 7/19/2025
3.4.2025.714-beta0609 193 7/14/2025
3.4.2025.713-beta1409 529 7/13/2025
3.4.2025.711-beta0134 189 7/11/2025
3.4.2025.701 1,384 7/1/2025
3.4.2025.701-beta1707 186 7/1/2025
3.4.2025.630-beta1149 187 6/30/2025
3.4.2025.623-beta0810 177 6/23/2025
3.4.2025.620-beta2321 111 6/20/2025
3.4.2025.612-beta1557 326 6/12/2025
3.4.2025.610-beta0351 317 6/10/2025
3.4.2025.601 1,531 6/1/2025
3.4.2025.601-beta0849 129 6/1/2025
3.4.2025.528-beta1318 198 5/28/2025
3.4.2025.527-beta1719 202 5/27/2025
3.3.2025.524-beta0042 194 5/24/2025
3.3.2025.516-beta1457 444 5/16/2025
3.3.2025.515-beta1341 270 5/15/2025
3.3.2025.514-beta1642 274 5/14/2025
3.3.2025.514-beta0402 343 5/14/2025
3.3.2025.506 1,080 5/6/2025
3.3.2025.501-beta2348 198 5/1/2025
3.3.2025.428-beta0228 210 4/28/2025
3.3.2025.426-beta1401 145 4/26/2025
3.3.2025.417-beta1403 250 4/17/2025
3.3.2025.416-beta1258 245 4/16/2025
3.3.2025.415-beta1728 251 4/15/2025
3.3.2025.401 3,584 4/1/2025
3.3.2025.401-beta0745 211 4/1/2025
3.3.2025.313-beta0255 206 3/13/2025
3.3.2025.305-beta1129 274 3/5/2025
3.3.2025.301 1,065 3/1/2025
3.3.2025.301-beta0201 148 3/1/2025
3.3.2025.226-beta1322 148 2/26/2025
3.3.2025.217-beta1626 152 2/17/2025
3.3.2025.212-beta1302 162 2/12/2025
3.3.2025.207-beta0907 171 2/7/2025
3.3.2025.202 1,206 2/2/2025
3.3.2025.202-beta1508 142 2/2/2025
3.3.2025.119-beta1552 383 1/19/2025
3.3.2025.109-beta1540 1,170 1/9/2025
3.3.2025.109-beta1520 180 1/9/2025
3.3.2025.107-beta0002 148 1/7/2025
3.3.2025.104-beta0002 171 1/4/2025
3.2.2025.103-beta1506 171 1/3/2025
3.2.2025.101 9,203 1/1/2025
3.2.2025.101-beta1215 158 1/1/2025
3.2.2025.101-beta0213 167 1/1/2025
3.2.2024.1231-beta1634 162 12/31/2024
3.2.2024.1229-beta0603 214 12/29/2024
3.2.2024.1228-beta0003 127 12/28/2024
3.2.2024.1225-beta1617 141 12/25/2024
3.2.2024.1221-beta0545 139 12/21/2024
3.2.2024.1211 1,102 12/11/2024
3.2.2024.1208-beta0603 155 12/8/2024
3.2.2024.1203 559 12/3/2024
3.2.2024.1203-beta0033 126 12/3/2024
3.2.2024.1203-beta0010 126 12/3/2024
3.2.2024.1125-beta1044 141 11/25/2024
3.2.2024.1120-beta0605 147 11/20/2024
3.2.2024.1118-beta0607 138 11/18/2024
3.2.2024.1117 932 11/17/2024
3.2.2024.1117-beta1039 141 11/17/2024
3.2.2024.1115-beta0605 124 11/15/2024
3.2.2024.1113 864 11/13/2024
3.2.2024.1113-beta1709 150 11/13/2024
3.1.2024.1113-beta0606 155 11/13/2024
3.1.2024.1101 1,327 11/1/2024
3.1.2024.1101-beta1012 140 11/1/2024
3.1.2024.1031-beta0152 154 10/31/2024
3.1.2024.1025-beta1552 308 10/25/2024
3.1.2024.1023-beta0712 262 10/23/2024
3.1.2024.1022-beta1409 140 10/22/2024
3.1.2024.1012-beta1536 222 10/12/2024
3.1.2024.1007-beta1552 144 10/7/2024
3.1.2024.1004 1,197 10/4/2024
3.1.2024.1004-beta1804 154 10/4/2024
3.1.2024.1004-beta0644 144 10/4/2024
3.1.2024.927-beta1348 141 9/27/2024
3.1.2024.917-beta0909 237 9/17/2024
3.0.2024.909-beta1027 183 9/9/2024
3.0.2024.902 1,700 9/2/2024
3.0.2024.902-beta0834 155 9/2/2024
3.0.2024.829-beta1355 163 8/29/2024
3.0.2024.829-beta0328 157 8/29/2024
3.0.2024.823-beta0730 187 8/23/2024
3.0.2024.815-beta1426 188 8/15/2024
3.0.2024.811-beta0611 163 8/11/2024
3.0.2024.807-beta0736 165 8/7/2024
3.0.2024.806 1,598 8/6/2024
3.0.2024.806-beta0336 167 8/6/2024
3.0.2024.806-beta0329 174 8/6/2024
3.0.2024.802 331 8/2/2024
3.0.2024.801 597 8/1/2024
3.0.2024.801-beta1738 152 8/1/2024
3.0.2024.801-beta1356 169 8/1/2024
3.0.2024.801-beta1023 177 8/1/2024
3.0.2024.730-beta0516 169 7/30/2024
3.0.2024.728-beta1357 447 7/28/2024
3.0.2024.728-beta0609 132 7/28/2024
3.0.2024.724-beta0746 264 7/24/2024
3.0.2024.719-beta0809 312 7/19/2024
3.0.2024.718-beta0535 171 7/18/2024
3.0.2024.717-beta0621 169 7/17/2024
3.0.2024.714-beta0610 405 7/14/2024
3.0.2024.711-beta0023 268 7/11/2024
3.0.2024.710-beta1002 147 7/10/2024
3.0.2024.708 1,083 7/8/2024
2.9.2024.620-beta1617 451 6/20/2024
2.9.2024.519-beta0702 216 5/19/2024
2.9.2024.417-beta1339 10,720 4/17/2024
2.9.2024.402 2,374 4/2/2024
2.9.2024.402-beta1711 162 4/2/2024
2.9.2024.327-beta0942 215 3/27/2024
2.9.2024.320-beta1238 274 3/20/2024
2.9.2024.317-beta2320 176 3/17/2024
2.9.2024.315-beta0600 175 3/15/2024
2.9.2024.228-beta1458 286 2/28/2024
2.9.2024.218 726 2/18/2024
2.9.2024.218-beta1622 184 2/18/2024
2.9.2024.218-beta1618 180 2/18/2024
2.9.2024.203-beta1407 184 2/3/2024
2.9.2024.202-beta1609 144 2/2/2024
2.9.2024.201-beta0619 157 2/1/2024
2.9.2024.131-beta0755 170 1/31/2024
2.9.2024.127-beta0217 158 1/27/2024
2.9.2024.125-beta0012 164 1/25/2024
2.9.2024.123-beta0122 166 1/23/2024
2.9.2024.104-beta0117 374 1/4/2024
2.9.2024.101 1,524 1/1/2024
2.9.2024.101-beta1457 171 1/1/2024
2.9.2023.1230-beta0014 197 12/30/2023
2.9.2023.1228-beta0339 188 12/28/2023
2.9.2023.1226-beta0009 199 12/26/2023
2.9.2023.1221-beta0815 209 12/21/2023
2.9.2023.1212-beta0411 214 12/12/2023
2.9.2023.1210-beta1348 189 12/10/2023
2.9.2023.1209-beta1708 196 12/9/2023
2.9.2023.1207-beta0007 193 12/7/2023
2.9.2023.1201 2,334 12/1/2023
2.9.2023.1201-beta0614 188 12/1/2023
2.9.2023.1124-beta2254 187 11/24/2023
2.9.2023.1121-beta1004 196 11/21/2023
2.9.2023.1120-beta1458 176 11/20/2023
2.9.2023.1114-beta0658 190 11/14/2023
2.9.2023.1107-beta0009 196 11/7/2023
2.9.2023.1103 2,251 11/3/2023
2.9.2023.1102-beta2341 192 11/2/2023
2.9.2023.1102-beta0741 187 11/2/2023
2.9.2023.1102-beta0014 191 11/2/2023
2.9.2023.1031-beta0820 192 10/31/2023
2.9.2023.1022-beta1418 199 10/22/2023
2.9.2023.1020-beta0115 193 10/20/2023
2.9.2023.1010-beta1213 209 10/10/2023
2.9.2023.1008-beta0318 207 10/8/2023
2.9.2023.1001 3,560 10/1/2023
2.9.2023.1001-beta1459 190 10/1/2023
2.9.2023.930-beta0654 194 9/30/2023
2.9.2023.929-beta0435 310 9/29/2023
2.9.2023.929-beta0430 194 9/29/2023
2.9.2023.927-beta1525 195 9/27/2023
2.9.2023.909-beta0002 247 9/9/2023
2.9.2023.905-beta0813 223 9/5/2023
2.9.2023.829-beta0552 644 8/29/2023
2.9.2023.804-beta1202 389 8/4/2023
2.9.2023.801 1,694 8/1/2023
2.9.2023.801-beta0944 237 8/1/2023
2.9.2023.722-beta1145 259 7/22/2023
2.9.2023.711-beta0327 276 7/11/2023
2.9.2023.707-beta0322 485 7/7/2023
2.9.2023.704-beta0219 501 7/4/2023
2.9.2023.701-beta0243 232 7/1/2023
2.9.2023.627-beta0441 448 6/27/2023
2.9.2023.624-beta0023 465 6/24/2023
2.9.2023.620-beta1035 220 6/20/2023
2.9.2023.617-beta1106 323 6/17/2023
2.9.2023.611-beta1623 242 6/11/2023
2.9.2023.610-beta0451 235 6/10/2023
2.9.2023.609-beta1408 468 6/9/2023
2.9.2023.606-beta1138 246 6/6/2023
2.9.2023.603-beta0002 231 6/3/2023
2.9.2023.601 1,510 6/1/2023
2.9.2023.601-beta1647 240 6/1/2023
2.8.2023.528-beta1513 313 5/28/2023
2.8.2023.527-beta0245 256 5/27/2023
2.8.2023.523-beta0003 305 5/23/2023
2.8.2023.520-beta0003 291 5/20/2023
2.8.2023.516-beta0720 598 5/16/2023
2.8.2023.513-beta0003 245 5/13/2023
2.8.2023.512 595 5/12/2023
2.8.2023.512-beta1549 246 5/12/2023
2.8.2023.512-beta1508 250 5/12/2023
2.8.2023.510-beta2330 368 5/10/2023
2.8.2023.422-beta0207 405 4/22/2023
2.8.2023.416-beta1214 851 4/16/2023
2.8.2023.408-beta0107 351 4/8/2023
2.8.2023.405-beta0513 301 4/5/2023
2.8.2023.405-beta0134 252 4/5/2023
2.8.2023.403 900 4/3/2023
2.8.2023.401-beta1736 261 4/1/2023
2.8.2023.401-beta0002 276 4/1/2023
2.8.2023.330-beta1303 247 3/30/2023
2.8.2023.325-beta0149 1,073 3/25/2023
2.8.2023.318-beta0213 312 3/18/2023
2.8.2023.314-beta1621 273 3/14/2023
2.7.2023.301 2,326 3/1/2023
2.7.2023.301-beta1604 260 3/1/2023
2.7.2023.228-beta0648 256 2/28/2023
2.7.2023.225-beta0127 346 2/25/2023
2.7.2023.221-beta0001 489 2/21/2023
2.7.2023.216-beta0517 224 2/16/2023
2.7.2023.216-beta0511 276 2/16/2023
2.7.2023.214-beta1552 244 2/14/2023
2.6.2023.214-beta0205 251 2/14/2023
2.6.2023.211-beta0547 256 2/11/2023
2.6.2023.207-beta0755 261 2/7/2023
2.6.2023.203 2,241 2/3/2023
2.6.2023.203-beta1436 256 2/3/2023
2.6.2023.203-beta1157 262 2/3/2023
2.6.2023.116-beta0224 311 1/16/2023
2.6.2023.110-beta0119 275 1/10/2023
2.6.2023.107-beta0244 268 1/7/2023
2.6.2023.106-beta1502 296 1/6/2023
2.6.2023.103-beta0103 266 1/3/2023
2.6.2023.101 1,194 1/1/2023
2.6.2023.101-beta0339 264 1/1/2023
2.5.2023.101 1,500 1/1/2023
2.5.2023.101-beta0259 260 1/1/2023
2.5.2023.101-beta0140 269 1/1/2023
2.5.2022.1227-beta0326 267 12/27/2022
2.5.2022.1220-beta0113 816 12/20/2022
2.5.2022.1217-beta0141 240 12/17/2022
2.5.2022.1213-beta0750 405 12/13/2022
2.5.2022.1206-beta0251 647 12/6/2022
2.5.2022.1201 812 12/1/2022
2.5.2022.1201-beta1509 252 12/1/2022
2.5.2022.1129-beta1431 324 11/29/2022
2.5.2022.1129-beta0541 1,518 11/29/2022
2.5.2022.1126-beta0200 309 11/26/2022
2.5.2022.1119-beta0024 251 11/19/2022
2.4.2022.1115-beta0001 283 11/15/2022
2.4.2022.1112-beta0002 309 11/12/2022
2.4.2022.1108-beta0052 689 11/8/2022
2.4.2022.1101 2,485 11/1/2022
2.4.2022.1101-beta0813 283 11/1/2022
2.4.2022.1030-beta0738 228 10/30/2022
2.4.2022.1019-beta0141 349 10/19/2022
2.3.2024.917-beta0222 125 9/17/2024
2.3.2022.1017-beta1058 315 10/17/2022
2.3.2022.1016-beta0306 248 10/16/2022
2.3.2022.1007-beta1303 497 10/7/2022
2.3.2022.1001 2,140 10/1/2022
2.3.2022.1001-beta1603 269 10/1/2022
2.3.2022.917-beta1649 2,878 9/17/2022
2.3.2022.901 989 9/1/2022
2.3.2022.901-beta0717 220 9/1/2022
2.3.2022.825-beta1132 294 8/25/2022
2.3.2022.822-beta0651 289 8/22/2022
2.3.2022.816-beta1410 322 8/16/2022
2.3.2022.814-beta0337 468 8/14/2022
2.3.2022.810-beta1054 292 8/10/2022
2.2.2022.808 939 8/8/2022
2.2.2022.807-beta0843 294 8/7/2022
2.2.2022.710 935 7/10/2022
2.2.2022.710-beta2345 329 7/10/2022
2.2.2022.619-beta1000 290 6/19/2022
2.2.2022.606-beta0640 442 6/6/2022
2.2.2022.601 1,134 6/1/2022
2.2.2022.601-beta1319 296 6/1/2022
2.1.2022.530-beta0010 324 5/30/2022
2.1.2022.509-beta0359 485 5/9/2022
2.1.2022.501 3,209 5/1/2022
2.1.2022.501-beta0522 296 5/1/2022
2.0.2022.423-beta0230 381 4/23/2022
2.0.2022.404 1,100 4/4/2022
2.0.2022.321-beta0910 392 3/21/2022
2.0.2022.319-beta0414 329 3/19/2022
2.0.2022.313-beta1248 308 3/13/2022
2.0.2022.312-beta1059 309 3/12/2022
2.0.2022.309 995 3/9/2022
2.0.2022.304 883 3/4/2022
2.0.2022.216-beta2 348 2/16/2022
2.0.2022.204 1,107 2/4/2022
2.0.2022.101 819 1/1/2022
1.5.2022.223 911 2/23/2022
1.5.2021.1225 717 12/25/2021
1.5.2021.1216-beta1 340 12/16/2021
1.5.2021.1204 1,280 12/4/2021
1.5.2021.1109 913 11/9/2021
1.5.2021.1030-beta3 458 10/30/2021
1.5.2021.1001 1,078 10/1/2021
1.5.2021.926-Beta1 384 9/28/2021
1.5.2021.505 1,600 5/5/2021
1.5.2021.427-beta1 476 4/27/2021
1.5.2021.408 935 4/8/2021
1.4.2021.327-rc1 573 3/27/2021
1.4.2021.322-beta3 501 3/22/2021
1.4.2021.316-beta1 377 3/16/2021
1.3.2021.304 1,239 3/3/2021
1.2.2021.103 1,119 1/3/2021
1.2.2020.1204 818 12/4/2020
1.2.2020.1101 919 11/1/2020
1.2.2020.1025-rc1 665 10/25/2020
1.2.2020.1020-beta2 612 10/20/2020
1.2.2020.1010-beta1 534 10/10/2020
1.2.2020.1002 1,024 10/2/2020
1.2.2020.930-rc14 495 9/30/2020
1.2.2020.922-rc1 544 9/22/2020
1.2.2020.918-beta3 562 9/18/2020
1.2.2020.914-beta 514 9/14/2020
1.2.2020.902 936 9/1/2020
1.1.2020.825-beta2 607 8/24/2020
1.1.2020.802 958 8/2/2020
1.1.2020.727-rc3 573 7/27/2020
1.1.2020.717-beta2 696 7/17/2020
1.1.2020.709 819 7/9/2020
1.0.2020.501 948 5/1/2020

增加分布式缓存架构ICacheProvider