- 添加模拟数据生成器; - GC时添加碎片整理; - 优化日志输出,添加更多DEBUG监控项目; - 修复输出时分库配置逻辑的严重错误; - 优化了少许内存性能,减少Lambda闭包分配;
11 lines
326 B
C#
11 lines
326 B
C#
namespace Mesdb.DataGenerator;
|
|
|
|
public static class MockHelper
|
|
{
|
|
public static string RandomString(int length)
|
|
{
|
|
const string chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
|
|
return new string(Enumerable.Repeat(chars, length)
|
|
.Select(s => s[Random.Shared.Next(s.Length)]).ToArray());
|
|
}
|
|
} |