我的法典在清单中增加了约100 000件物品。
如果加上一系列的扼杀或物体,则该守则几乎瞬时运行(低于100米),但如果我试图增加一系列的构件,就只需要近1.5秒。 添加呼吁。
为什么在使用结构时会产生这种业绩影响?
这里,我的工作方向是:
public struct LiteRowInfo
{
public long Position;
public int Length;
public int Field;
public int Row;
public LiteRowInfo(long position, int length, int field, int row)
{
this.Position = position;
this.Length = length;
this.Field = field;
this.Row = row;
}
}
EDIT 2: Performances of the string method is faster than that of the struct: I appreciate the comments, it does seem like there is additional overhead in creating the struct its self. I think I will just create 2 seperate list to store the position and length to improve performance.
private void Test()
{
Stopwatch watch = new Stopwatch();
watch.Start();
List<LiteRowInfo[]> structList = new List<LiteRowInfo[]>();
for (int i = 0; i < 100000; i++)
{
LiteRowInfo[] info = new LiteRowInfo[20];
for (int x = 0; x < 20; x++)
{
LiteRowInfo row;
row.Length = x;
row.Position = (long)i;
info[x] = row;
}
structList.Add(info);
}
Debug.Print(watch.ElapsedMilliseconds.ToString());
watch.Reset();
watch.Start();
List<string[]> stringList = new List<string[]>();
for (int i = 0; i < 100000; i++)
{
string[] info = new string[20];
for (int x = 0; x < 20; x++)
{
info[x] = "String";
}
stringList.Add(info);
}
Debug.Print(watch.ElapsedMilliseconds.ToString());
}
EDIT: Here is all relevant code: Note: If I comment out only the pos.Add(rowInfo); line, the performance is similar to that of a string[] or int[].
private void executeSqlStream()
{
List<LiteRowInfo[]> pos = new List<LiteRowInfo[]>();
long currentPos = 0;
_stream = new MemoryStream();
StreamWriter writer = new StreamWriter(_stream);
using (SqlConnection cnn = new SqlConnection(_cnnString))
{
cnn.Open();
SqlCommand cmd = new SqlCommand(_sqlString, cnn);
SqlDataReader reader = cmd.ExecuteReader();
int fieldCount = reader.FieldCount;
int rowNum = 0;
UnicodeEncoding encode = new UnicodeEncoding();
List<string> fields = new List<string>();
for (int i = 0; i < fieldCount; i++)
{
fields.Add(reader.GetFieldType(i).Name);
}
while (reader.Read())
{
LiteRowInfo[] rowData = new LiteRowInfo[fieldCount];
for (int i = 0; i < fieldCount; i++)
{
LiteRowInfo info;
if (reader[i] != DBNull.Value)
{
byte[] b;
switch (fields[i])
{
case "Int32":
b = BitConverter.GetBytes(reader.GetInt32(i));
break;
case "Int64":
b = BitConverter.GetBytes(reader.GetInt64(i));
break;
case "DateTime":
DateTime dt = reader.GetDateTime(i);
b = BitConverter.GetBytes(dt.ToBinary());
break;
case "Double":
b = BitConverter.GetBytes(reader.GetDouble(i));
break;
case "Boolean":
b = BitConverter.GetBytes(reader.GetBoolean(i));
break;
case "Decimal":
b = BitConverter.GetBytes((float)reader.GetDecimal(i));
break;
default:
b = encode.GetBytes(reader.GetString(i));
break;
}
int len = b.Length;
info.Position = currentPos += len;
info.Length = len;
info.Field = i;
info.Row = rowNum;
currentPos += len;
_stream.Write(b, 0, len);
}
else
{
info.Position = currentPos;
info.Length = 0;
info.Field = i;
info.Row = rowNum;
}
rowData[i] = info;
}
rowNum++;
pos.Add(rowData);
}
}
}