博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SignalR 中使用 MessagePack 序列化提高 WebSocket 通信性能
阅读量:5874 次
发布时间:2019-06-19

本文共 3030 字,大约阅读时间需要 10 分钟。

It's like JSON.

but fast and small.

is an efficient binary serialization format. It lets you exchange data among multiple languages like JSON. But it's faster and smaller. Small integers are encoded into a single byte, and typical short strings require only one extra byte in addition to the strings themselves.

默认我们在 ASP.NET Core SignalR 中使用 WebSocket 协议通信,默认使用 JSON 格式数据传输,为了更高效我们可以使用 MessagePack 来替换。 MessagePack 是一个高效的二进制序列化格式。它让你像JSON一样可以在各种语言之间交换数据。但是它比JSON更快、更小。小的整数会被编码成一个字节,短的字符串仅仅只需要比它的长度多一字节的大小。

在 SignalR 中使用 MessagePack 也很简单:

public void ConfigureServices(IServiceCollection services)        {            //自定义配置            services.Configure
(Configuration.GetSection("ConnectionStrings")); //https://docs.microsoft.com/en-us/aspnet/core/security/gdpr?view=aspnetcore-2.1 services.Configure
(options => { options.CheckConsentNeeded = context => true; options.MinimumSameSitePolicy = SameSiteMode.None; }); //添加 Hangfire 服务 services.AddHangfire(config => config.UseRedisStorage(Redis)); // services.AddHangfire(config => config.UseSqlServerStorage("
")); //添加 Cookie 中间件 services.AddAuthentication(sharedOptions => { sharedOptions.DefaultScheme = CookieAuthenticationDefaults.AuthenticationScheme; // sharedOptions.DefaultChallengeScheme = OpenIdConnectDefaults.AuthenticationScheme; }) //.AddAzureAdB2C(opts => Configuration.Bind("AzureAdB2C", opts)) .AddCookie(opts => { opts.LoginPath = new PathString("/account/login"); opts.AccessDeniedPath = new PathString("/account/denied"); }); services.AddSignalR(options => { //Faster pings for testing //options.KeepAliveInterval = TimeSpan.FromSeconds(5); }) .AddMessagePackProtocol(options => { // options.FormatterResolvers = new List
() //{ // MessagePack.Resolvers.StandardResolver.Instance //}; }) .AddRedis(Configuration.GetConnectionString("Redis")); //返回大小写问题 services.AddMvc() .AddJsonOptions(option => option.SerializerSettings.ContractResolver = new Newtonsoft.Json.Serialization.DefaultContractResolver()); }
.NET 客户端
var hubConnection = new HubConnectionBuilder()                        .WithUrl("/chatHub")                        .AddMessagePackProtocol()                        .Build();

JavaScript 客户端

npm install @aspnet/signalr-protocol-msgpack
const connection = new signalR.HubConnectionBuilder()                              .withUrl("/hqHub")                              .withHubProtocol(new signalR.protocols.msgpack.MessagePackHubProtocol())                              .build();

运行日志

REFER:

转载地址:http://vwhnx.baihongyu.com/

你可能感兴趣的文章
SpringMVC系列(十六)Spring MVC与Struts2的对比
查看>>
20061008: IntelliJ Idea 6
查看>>
Android IOS WebRTC 音视频开发总结(四一)-- QQ和webrtc打洞能力pk
查看>>
Immediately register your GHD frizzy hair straightener concerning the GHD web page
查看>>
清除Xcode缓存
查看>>
Sharepoint2013:在页面上显示错误信息
查看>>
8-2测试总结
查看>>
SQLiteDatabase中query、insert、update、delete方法参数说明
查看>>
将军令
查看>>
多线程实现端口扫描
查看>>
java 类的应用
查看>>
koa cookie使用
查看>>
shutdown immediate ,无法关闭数据库的解决方案
查看>>
CentOS7系统上的GPSTK源码安装
查看>>
三种样式表
查看>>
Eclipse 常用快捷键(动画讲解)
查看>>
python pandas 数据处理
查看>>
[Learn AF3]第七章 App framework组件之Popup
查看>>
Java SE 第二十三讲----static关键字and final关键字
查看>>
微信小程序开发的游戏《拼图游戏》
查看>>