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:
Huakun Shen 2025-03-23 08:16:47 -04:00
parent f900f944d8
commit 6614a47a98
No known key found for this signature in database
4 changed files with 11 additions and 6 deletions

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"deno.enable": true
}

2
dev.ts
View File

@ -6,7 +6,7 @@ const testPath = "./test.txt";
const writeResult = await sequentialWriteTest(
{
filePath: testPath,
sizeInMB: 1000,
sizeInMB: 200,
rounds: 10,
bufferSizeMB: 1,
keepTheFile: true,

View File

@ -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);
}

View File

@ -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");