Beetlex简介
-
BeetleX
是一款跨平台的TCP/IP通讯应用服务框架,框架提供非常出色的性能支持,在techempower基础json测方式其http性能可达到百万级RPS处理效能。框架除了提供基础的TCP服务外,还提供http
,websocket
,xrpc
,gateway
和redsi
等扩展组件提供使用。 - 主要功能
- 基于异步的通讯模型,可应对百万级别的服务通讯需求。
- 支持TLS,可制定更可靠安全的通讯服务。
支持Linux,Windows等多平台部署。
- 支持TLS,可制定更可靠安全的通讯服务。
- 支持完善的会话管理机制,针对就同应用扩展不同的会话管理机制。
- Stream的数据操作模式,无缝兼容更多序列化组件并大大降低内存复制,让性能更出色。
Beetlex的使用
-
新建.net core控制台应用程序
-
使用nuget包管理器添加
Beetlex.FastHttpApi
依赖
添加
Controller
类,在Controller
中添加hello
方法。
using System;
using BeetleX.FastHttpApi;
namespace BeetlexSimple.Controller
{
[Controller]
class IndexController
{
public object Hello(string name)
{
return new { Hello = "hello" + name, Time = DateTime.Now };
}
}
}
Controller
类前面需要添加[Controller]
标签
- 在
Program
类进行webapi
的配置
using BeetleX.FastHttpApi;
using System;
namespace BeetlexSimple
{
class Program
{
static void Main(string[] args)
{
HttpApiServer httpApiServer = new BeetleX.FastHttpApi.HttpApiServer();
httpApiServer.Options.SetDebug();
httpApiServer.Options.LogToConsole = true;//日志输出到命令行
httpApiServer.Options.LogLevel = BeetleX.EventArgs.LogType.Debug;//日志输出级别
httpApiServer.Options.Port = 80;//监听端口
httpApiServer.Register(typeof(Program).Assembly);
httpApiServer.Open();
Console.Write(httpApiServer.BaseServer);
Console.Read();
}
}
}
或者使用配置文件进行配置:将HttpConfig.json
文件放置在文件路径下,程序运行前会自动对配置文件进行加载。(我测试后发现没有效果,但此处仍将配置文件贴上,作为代码配置的参考)
{
"HttpConfig": {
"BufferPoolMaxMemory": 500, //最大缓存区大小,以MB为单
"SessionTimeOut": 3600, //会话超时,单位秒;在指定时间内没有请求则关闭连接会话
"UseIPv6": true, //是否则用IPV6,默认启用
"UrlIgnoreCase": true, //Url不区分大小写,默认不区分
"PacketCombined": 0, //合并消息编码,只适用于websocket,0则不开启。
"LogToConsole": true, //日志是否输出命令行
"CacheFiles": "html;htm;js;css", //缓存文件类型
"CacheFileSize": 500, //缓存文件大小,单位KB
"LogLevel": 8, //日志级别,详细查看对应的类型
"WebSocketMaxRPS": 100, //会话最大RPS数,只适用于websocket
"BufferSize": 8096, //缓冲区大小
"NoGzipFiles": "jpg;jpeg;png;gif;png;ico;zip;rar;bmp", //不开启gzip支持的文件类型,其他文件则开启gzip输出
"MaxConnections": 2000, //最大连接数
"WriteLog": true, //是否写日志文件
"Host": "", //监听地址,不指定则是ipaddress.any
"Port": 80, //监听端口
"MaxBodyLength": 2097152, //最大消息长度
"OutputStackTrace": false, //异常时是否输出详细代码信息
"StaticResurceType": "txt;xml;zip;jpg;css;png;htm;woff;svg;gif;woff2;js;html;jpeg;ico;rar", //支持的静态资源
"DefaultPage": "product.html;index.html;index.htm" //默认页
}
}
- 运行程序,在浏览器中输入
localhost/hello
Url不区分大小写