KJFramework.Message 1.4.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package KJFramework.Message --version 1.4.3
NuGet\Install-Package KJFramework.Message -Version 1.4.3
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="KJFramework.Message" Version="1.4.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add KJFramework.Message --version 1.4.3
#r "nuget: KJFramework.Message, 1.4.3"
#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.
// Install KJFramework.Message as a Cake Addin
#addin nuget:?package=KJFramework.Message&version=1.4.3

// Install KJFramework.Message as a Cake Tool
#tool nuget:?package=KJFramework.Message&version=1.4.3

KJFramework.Messages, 提供了.NET平台的高性能序列化/反序列化解决方案。

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.6.0 1,843 12/19/2013
1.5.0 1,536 5/7/2013
1.4.3 1,358 4/7/2013
1.4.2 1,284 4/1/2013
1.4.1 1,263 3/28/2013
1.4.0 1,344 1/5/2013
1.3.2 1,293 12/24/2012
1.3.1.1 1,266 12/19/2012
1.3.0 1,516 9/17/2012
1.2.0 1,362 8/23/2012
1.1.1 1,372 8/10/2012
1.1.0 1,345 7/16/2012
1.0.0 1,272 7/16/2012

在上一次更新后,我们惊奇的发现,在反序列化的一定量级操作上,居然比原来慢了不少。经过一定量的分析后,
我们不难得出慢的原因是出在了Activator.CreateInstance()这个方法上。
于是乎,我们在KJFramework.Message内部,创建了一个新的帮助类(IntellectObjectArrayHelper),
我们使用这个帮助类来完成反序列化中"智能对象相关类型"数组的创建工作。

通过本次的更新后,反序列化的一定量级操作上,平均耗时下降了300ms, 已经恢复到原有的速度了。