1 Star 0 Fork 1

flyger/Spw.Snowflake

forked from 星大派/Spw.Snowflake 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Program.cs 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
星大派 提交于 2020-11-13 15:16 . init
using System.Runtime.CompilerServices;
using System.Collections.Concurrent;
using System.Diagnostics;
using System.Threading.Tasks;
using System;
using System.Collections.Generic;
using System.Linq;
namespace Spw.Snowflake
{
class Program
{
static void Main(string[] args)
{
var ids = new ConcurrentStack<long>();
var sfc = new SnowFlakeCore(1605250175746, 1, 1);
var sw = new Stopwatch();
sw.Start();
var pr = Parallel.For(0, 1000000, i =>
{
ids.Push(sfc.GenerateId());
});
while (!pr.IsCompleted) { }
sw.Stop();
Console.WriteLine($"spent {sw.ElapsedMilliseconds}, id count {ids.Count}");
var repeatIds = ids.GroupBy(x => x).Where(s => s.Count() > 1);
// foreach (var id in repeatIds)
// {
// Console.WriteLine($"key -> {id.Key}, count -> {id.Count()}");
// }
Console.WriteLine($"repeat count {repeatIds.Count()}");
// while (!ids.IsEmpty)
// {
// ids.TryPop(out var id);
// Console.WriteLine(id);
// }
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/flyger757/spw.-snowflake.git
git@gitee.com:flyger757/spw.-snowflake.git
flyger757
spw.-snowflake
Spw.Snowflake
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385