SparkServer icon indicating copy to clipboard operation
SparkServer copied to clipboard

SparkServer是一个参照skynet设计的C#服务端框架,能够无缝整合到skynet集群机制中,也能自行组网,构建只有SparkServer节点的集群

Results 5 SparkServer issues
Sort by recently updated
recently updated
newest added

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.2 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

我按照readme上的做法完成后尝试编译得到了这个问题 `/usr/lib/mono/msbuild/15.0/bin/Microsoft.CSharp.CurrentVersion.targets(331,5): error MSB4019: The imported project "/usr/lib/mono/msbuild/15.0/bin/Roslyn/Microsoft.CSharp.Core.targets" was not found. Confirm that the path in the declaration is correct, and that the file exists on disk. [/home/xia0lei/elemental2_server/SparkServer/spark-server/server/SparkServer.csproj]` 环境:centos 7

Gateway测试用例中,客户端发送的字符串为"HelloHe...",而收到的是一段Base64编码的字符串,内容完全不同。 经查,原因在GateWayCase.cs中 SocketData函数中 ` List buffList = new List(); buffList.Add(Encoding.ASCII.GetBytes(data.buffer)); message.Buffers = buffList;` 改为 ` List buffList = new List(); buffList.Add(Convert.FromBase64String(data.buffer)); message.Buffers = buffList;` 即可。 (本来想提PR,但网络代理有点问题速度太慢)

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.2 to 13.0.2. Release notes Sourced from Newtonsoft.Json's releases. 13.0.2 New feature - Add support for DateOnly and TimeOnly New feature - Add UnixDateTimeConverter.AllowPreEpoch property New feature...

dependencies

Update to .net8.0 & Support async/await call.