c#パケットサーバを実現し、単一重複なしでIDを生成する
7244 ワード
1 class Program
2 {
3 static void Main(string[] args)
4 {
5 List<Thread> threads = new List<Thread>();
6 getID();
7 Console.WriteLine(" :" + ccount);
8 Console.ReadLine();
9 }
10
11 public static void getID()
12 {
13 for (int j = 0; j < 20; j++)
14 {
15 for (int i = 0; i < 99999; i++)
16 {
17 // GetDate();
18 Console.WriteLine(GetDate());
19 }
20 Thread.Sleep(980);
21 }
22 }
23
24 static int serverID = 99;
25 static ulong ID = 1;
26 static HashSet<string> longset = new HashSet<string>();
27 static int ccount = 0;
28
29 public static string GetDate()
30 {
31 lock (typeof(ulong))
32 {
33 if (ID + 1 > 99999)
34 {
35 ID = 0;
36 }
37 ID++;
38 string _ulong = serverID + "" + System.DateTime.Now.ToString("yyMMddHHmmss") + ("" + ID).PadLeft(5, '0');
39 if (longset.Contains(_ulong))
40 {
41 ccount++;
42 }
43 longset.Add(_ulong);
44 return _ulong;
45 }
46 }
47 }
このプログラムは生成に用いるIDが強すぎるルールがあり,分散生成IDを実現でき,集計データに重複IDがない~!現在99組のサーバーの同時運行をサポートし、毎秒9999個のID生成~!