C# 写入文件比较

news/2024/11/17 4:42:27/

数据长度:128188个long

BinaryWriter每次写一个long 耗时14.7828ms
StreamWriter每次写一个long 耗时44.0934 ms
FileStream每次写一个long 耗时20.5142 ms

FileStream固定chunk写入,循环操作数组,耗时13.4126 ms

	byte[] chunk = new byte[datalist.Count * 8];for (int i = 0; i < datalist.Count; i++) {long data = datalist[i];var bs = BitConverter.GetBytes(data);var startIndex = i * 8;for (int j = 0; j < 8; j++) {chunk[startIndex + j] = bs[j];}}fs.Write(chunk, 0, chunk.Length);startTime.Stop();lg.i($"{((float)startTime.ElapsedTicks / Stopwatch.Frequency) * 1000} ms");fs.Flush();fs.Close();

FileStream固定chunk写入,直接操作数组,耗时10.2729 ms

	byte[] chunk = new byte[datalist.Count * 8];for (int i = 0; i < datalist.Count; i++) {long data = datalist[i];var bs = BitConverter.GetBytes(data);var startIndex = i * 8;chunk[startIndex] = bs[0];chunk[startIndex + 1] = bs[1];chunk[startIndex + 2] = bs[2];chunk[startIndex + 3] = bs[3];chunk[startIndex + 4] = bs[4];chunk[startIndex + 5] = bs[5];chunk[startIndex + 6] = bs[6];chunk[startIndex + 7] = bs[7];}fs.Write(chunk, 0, chunk.Length);startTime.Stop();lg.i($"{((float)startTime.ElapsedTicks / Stopwatch.Frequency) * 1000} ms");fs.Flush();fs.Close();

经排查BitConverter.GetBytes源码如下,是上面比较耗时的地方,并且每次都会创建数组

public static unsafe byte[] GetBytes(long value) 
{byte[] bytes = new byte[8];fixed(byte* b = bytes)*((long*)b) = value;return bytes;
}

可以将上面改进一下,直接将代码内联进入上面代码上, 耗时2.8165 ms

public static unsafe byte[] GetBytes(List<long> values) {byte[] bytes = new byte[values.Count * sizeof(long)];fixed (byte* ptr = bytes) {long* longPtr = (long*)ptr;for (int i = 0; i < values.Count; i++) {*longPtr = values[i];longPtr++;}}return bytes;
}var startTime = new Stopwatch();
startTime.Start();
var fs = new FileStream(saveDataPath, FileMode.Append);
byte[] chunk = GetBytes(datalist);
fs.Write(chunk, 0, chunk.Length);
startTime.Stop();
lg.i($"{((float)startTime.ElapsedTicks / Stopwatch.Frequency) * 1000} ms");
fs.Flush();
fs.Close();

http://www.ppmy.cn/news/1173277.html

相关文章

第二证券:指数是什么意思?

跟着经济全球化的加速和商场化进程的深化&#xff0c;指数已成为金融商场重要的风向标和抉择方案参看。指数是依据商场上必定数量的标的股票价格改变而核算的数值&#xff0c;代表了特定股票商场的全体涨跌状况。本文将从多个视点剖析指数的意义和作用。 一、指数的品种和核算…

C++——优先级队列priority

一、介绍 优先级队列默认使用vector作为其底层存储数据的容器&#xff0c;在vector上又使用了堆算法将vector中元素构造成堆的结构&#xff0c;因此priority_queue就是堆&#xff0c;所有需要用到堆的位置&#xff0c;都可以考虑使用priority_queue。&#xff08;注意&#xf…

如何部署和配置IPv6

环境&#xff1a; IPv6 问题描述&#xff1a; 如何部署和配置IPv6 解决方案&#xff1a; 要了解 IPv6&#xff0c;首先需要了解 IPv4&#xff0c;因为 IPv6 是 IPv4 的升级版本。IPv4 是互联网上最常见的 IP 地址协议&#xff0c;它使用 32 位地址&#xff0c;可以表示大约…

使用VisualSVN在Windows系统上设置SVN服务器,并结合内网穿透实现公网访问

文章目录 前言1. VisualSVN安装与配置2. VisualSVN Server管理界面配置3. 安装cpolar内网穿透3.1 注册账号3.2 下载cpolar客户端3.3 登录cpolar web ui管理界面3.4 创建公网地址 4. 固定公网地址访问 前言 SVN 是 subversion 的缩写&#xff0c;是一个开放源代码的版本控制系统…

1024啊啊啊啊啊啊

1024 程序员节快乐&#xff0c;没什么想发的&#xff0c;只是想要个1024胸章。

D - United We Stand

思路&#xff1a; &#xff08;1&#xff09;题目要求将集合A划分为B&#xff0c;C两组&#xff0c;使得C中任意数都不是B中的除数 &#xff08;2&#xff09;直观感受&#xff0c;只要让C中数比B中大&#xff0c;则满足条件&#xff0c;不妨只取最大的放入C中&#xff1b; …

vue:项目开发:在请求拦截器中处理loading加载 请求头(headers)的检验配置 接口文档出现的特殊符号处理的方式

请求拦截器中的一些处理逻辑 // 自定义配置实例 (自己配置的请求) import store from /store import axios from axios import { Toast } from vantconst instance axios.create({baseURL: http://cba.itlike.com/public/index.php?s/api/,timeout: 5000 })// 添加请求拦截器…