Socket
Socket
Sign inDemoInstall

disk-backed-array

Package Overview
Dependencies
1
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    disk-backed-array

Disked backed array is a data structure that combines the benefits of an array with the persistence of disk storage.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Disk Backed Array

Disked backed array is a data structure that combines the benefits of an array with the persistence of disk storage.

Quickstart

Installation

npm install disk-backed-array

Usage

import { DiskBackedArray } from 'disk-backed-array';

const diskBackedArray: DiskBackedArray = new DiskBackedArray('logs.bin');

await diskBackedArray.open();

await diskBackedArray.set(0, Buffer.from('hello world'));

const buffer: Buffer = await diskBackedArray.get(0);
import { PartitionedDiskBackedArray } from 'disk-backed-array';

const partitionedDiskBackedArray: PartitionedDiskBackedArray = new PartitionedDiskBackedArray('data', 'logs');

await partitionedDiskBackedArray.open();

await partitionedDiskBackedArray.append(Buffer.from('hello world'));

const buffer: Buffer = await partitionedDiskBackedArray.get(0);

DiskBackedArray API

close(): Promise<void>

Closes the file descriptor

await diskBackedArray.close();

get(index: number): Promise<Buffer>

Returns data stored at specified index

const buffer: Buffer = await diskBackedArray.get(0);

length(): number

Return length of array

const length: number = diskBackedArray.length();

open(): Promise<void>

Opens the file descriptor

await diskBackedArray.open();

set(index: number, data: Buffer): Promise<void>

Sets data at specified index

await diskBackedArray.set(0, buffer);

truncate(index: number): Promise<void>

Truncates data at specified index

await diskBackedArray.truncate(0);

PartitionedDiskBackedArray API

append(data: Buffer): Promise<void>

Sets data at the last index

await partitionedDiskBackedArray.append(buffer);

isClose(): boolean

const isClose: boolean = await partitionedDiskBackedArray.isClose();

open(): Promise<void>

Opens the file descriptor

await partitionedDiskBackedArray.open();

length(): number

Return length of array

const length: number = partitionedDiskBackedArray.length();

get(index: number): Promise<Buffer>

Returns data stored at specified index

const buffer: Buffer = await partitionedDiskBackedArray.get(0);

truncate(index: number): Promise<void>

Truncates data at specified index

await partitionedDiskBackedArray.truncate(0);

File Format

********************************************
**  checksum  **  length   **  data       **
**  8 bytes   **  3 bytes  **  512 bytes  **
********************************************

Performance

set/secondget/second
Single Queue17 685
Parallel Queue (3)26 234

FAQs

Last updated on 12 Jan 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc