mirror of
https://github.com/kunkunsh/kunkun-ext-disk-speed.git
synced 2025-04-03 18:56:44 +00:00
Reduce default file size in sequential write test, implement streaming read in sequential read test, set default target directory in store, and add VSCode settings for Deno support.
This commit is contained in:
parent
f900f944d8
commit
6614a47a98
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"deno.enable": true
|
||||
}
|
2
dev.ts
2
dev.ts
@ -6,7 +6,7 @@ const testPath = "./test.txt";
|
||||
const writeResult = await sequentialWriteTest(
|
||||
{
|
||||
filePath: testPath,
|
||||
sizeInMB: 1000,
|
||||
sizeInMB: 200,
|
||||
rounds: 10,
|
||||
bufferSizeMB: 1,
|
||||
keepTheFile: true,
|
||||
|
@ -65,14 +65,16 @@ export async function sequentialReadTest(
|
||||
): Promise<Progress> {
|
||||
const { filePath, rounds, deleteAfter } = options;
|
||||
const file = await Deno.open(filePath, { read: true });
|
||||
const buffer = new Uint8Array(oneMB); // 1MB buffer
|
||||
const reader = file.readable.getReader();
|
||||
const start = performance.now();
|
||||
let totalMB = 0;
|
||||
while ((await file.read(buffer)) !== null) {
|
||||
totalMB += 1;
|
||||
|
||||
let readResult;
|
||||
while (!(readResult = await reader.read()).done) {
|
||||
totalMB += readResult.value.length / oneMB;
|
||||
}
|
||||
const totalDuration = (performance.now() - start) / 1000;
|
||||
file.close();
|
||||
// file.close();
|
||||
if (options.deleteAfter) {
|
||||
Deno.removeSync(filePath);
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { writable } from "svelte/store";
|
||||
|
||||
export const stress = writable(1);
|
||||
export const targetDir = writable<string | undefined>(undefined);
|
||||
export const targetDir = writable<string | undefined>("/Users/kunkun/Desktop");
|
||||
|
Loading…
x
Reference in New Issue
Block a user